Files
GlobalProtect-openconnect/gpgui/src/types.ts
2023-05-10 21:16:33 +08:00

6 lines
116 B
TypeScript

export type Maybe<T> = T | null | undefined;
export type MaybeProperties<T> = {
[P in keyof T]?: Maybe<T[P]>;
};