Last active
November 16, 2020 10:00
-
-
Save oleh-zaporozhets/582328f8f60ddc726b0d8e7b4c8e8773 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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