mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +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 {};
|