export type StripReadonly = { -readonly [K in keyof T]: T[K]; }; export declare function isDefined(x: T | undefined): x is T;