certimate/ui/types/global.utility.d.ts
2025-01-06 23:46:14 +08:00

8 lines
107 B
TypeScript

declare global {
type Nullish<T> = {
[P in keyof T]?: T[P] | null | undefined;
};
}
export {};