Home > @websublime/schema > Properties

Properties type

Properties of ObjectSchemaType

Signature:

export declare type Properties<T = any> = {
    [P in keyof T]: InferSchemaType<T[P]>;
} | null;

References: InferSchemaType