feat(plex/utils): added Plex OAuth class

This commit is contained in:
sct
2020-08-18 08:24:43 +00:00
parent 5adfdc1b05
commit 72f9624f1d
11 changed files with 342 additions and 25 deletions

3
src/utils/typeHelpers.ts Normal file
View File

@@ -0,0 +1,3 @@
export type Undefinable<T> = T | undefined;
export type Nullable<T> = T | null;
export type Maybe<T> = T | null | undefined;