mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
8 lines
107 B
TypeScript
8 lines
107 B
TypeScript
declare global {
|
|
type Nullish<T> = {
|
|
[P in keyof T]?: T[P] | null | undefined;
|
|
};
|
|
}
|
|
|
|
export {};
|