Start auth framework
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-06-05 12:02:36 -05:00
parent c264d45927
commit 91abcdf8ef
13 changed files with 656 additions and 5 deletions

View File

@@ -1 +1,5 @@
/** Type alias for something that may or may not be wrapped in a promise. */
export type Awaitable<T> = T | Promise<T>
/** Type alias for something that may be undefined. */
export type Maybe<T> = T | undefined