You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
interface AnyObject {
|
|
[key: string]: any;
|
|
}
|
|
|
|
type KVInfer<T> = { [K in keyof T]: T[K] };
|
|
|
|
type Void<T> = T | undefined | null;
|
|
|