mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
export type Maybe<T> = T | null | undefined;
|
|
|
|
export type MaybeProperties<T> = {
|
|
[P in keyof T]?: Maybe<T[P]>;
|
|
};
|