Type Alias SchemaType<T>

SchemaType<T>: {
    [K in keyof T]: {
        [K2 in keyof T[K]]: ExtractFieldType<T[K][K2]>
    }
}

Type Parameters