Skip to content

InferSchema type

Home > @direct-sqlite/schema > InferSchema

Signature:

export type InferSchema<T> = {
[K in keyof T]: InferColumn<T[K]>;
};

References: InferColumn