feat(plex/utils): added Plex OAuth class
This commit is contained in:
3
src/utils/typeHelpers.ts
Normal file
3
src/utils/typeHelpers.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export type Undefinable<T> = T | undefined;
|
||||
export type Nullable<T> = T | null;
|
||||
export type Maybe<T> = T | null | undefined;
|
||||
Reference in New Issue
Block a user