Skip to content

Instantly share code, notes, and snippets.

@oleh-zaporozhets
Created November 16, 2020 09:52
Show Gist options
  • Select an option

  • Save oleh-zaporozhets/0f976ef1f4ce312aacda84b2872bff3d to your computer and use it in GitHub Desktop.

Select an option

Save oleh-zaporozhets/0f976ef1f4ce312aacda84b2872bff3d to your computer and use it in GitHub Desktop.
interface IStorage {
getItem(key: string): string | null;
setItem(key: string, value: string): void;
removeItem(key: string): void;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment