Skip to content

Instantly share code, notes, and snippets.

@oleh-zaporozhets
Last active November 16, 2020 10:00
Show Gist options
  • Select an option

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

Select an option

Save oleh-zaporozhets/582328f8f60ddc726b0d8e7b4c8e8773 to your computer and use it in GitHub Desktop.
import Storage from './storage';
enum Locals {
ACCESS_TOKEN = 'access_token',
REFRESH_TOKEN = 'refresh_token'
}
class Tokens extends Storage<Locals> {
constructor() {
super();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment