prorm API Reference
    Preparing search index...

    Interface DataTypeAbstract

    The shape every data type shares: a key identifying it and a toSql() that renders the engine-specific column type.

    interface DataTypeAbstract {
        key: string;
        toSql?: () => string;
    }

    Hierarchy (View Summary)

    Implemented by

    Index
    key: string
    toSql?: () => string