Home > paratype > PropertyTypes
Maps properties to their corresponding run-time types
Signature:
export declare type PropertyTypes<T extends Record<string, unknown>> = {
[P in keyof T]-?: Type<Exclude<T[P], undefined>>;
};
References: Type
Home > paratype > PropertyTypes
Maps properties to their corresponding run-time types
Signature:
export declare type PropertyTypes<T extends Record<string, unknown>> = {
[P in keyof T]-?: Type<Exclude<T[P], undefined>>;
};
References: Type