init; collecting some of my commonly used utils
This commit is contained in:
6
pkg/types.ts
Normal file
6
pkg/types.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export type Callable<
|
||||
TReturn = void,
|
||||
TArgs extends unknown[] = unknown[]
|
||||
> = (...args: TArgs) => TReturn;
|
||||
|
||||
export type Maybe<T> = T | null | undefined;
|
||||
Reference in New Issue
Block a user