You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If denoland/deno#1657 lands, we can use the localStorage to automatically save input values for auto suggestions.
awaitInput.prompt({message: "Choose a color",suggestions: "local-storage-id",// Will be used as localStorage key to save suggestions.});awaitInput.prompt({message: "Choose a color",suggestions: {name: "local-storage-id",options: ["red","blue","green"],// Default suggestions. Will be used if no suggestions are available in localStorage.}});
The text was updated successfully, but these errors were encountered:
If denoland/deno#1657 lands, we can use the
localStorage
to automatically save input values for auto suggestions.The text was updated successfully, but these errors were encountered: