Documentation
    Preparing search index...

    Type Parameters

    Hierarchy

    • Table<T>
      • SQLiteTable
    Index

    Constructors

    Properties

    _: {
        brand: "Table";
        columns: T["columns"];
        config: T;
        inferInsert: {
            [K in string | number | symbol]: (
                {
                    [Key in string as RequiredKeyOnly<Key, T["columns"][Key]>]: T["columns"][Key]["_"]["notNull"] extends true
                        ? T["columns"][Key]["_"]["data"]
                        : (...)[(...)][Key]["_"]["data"]
                        | null
                } & {
                    [Key in string as OptionalKeyOnly<Key, T["columns"][Key], false>]?: (
                        ...
                    )[(...)][Key]["_"]["notNull"] extends true
                        ? (...)[(...)][Key]["_"]["data"]
                        : (...)[(...)]["_"]["data"] | null
                }
            )[K]
        };
        inferSelect: {
            [K in string]: {
                [Key in string as Key]: T["columns"][Key]["_"]["notNull"] extends true
                    ? T["columns"][Key]["_"]["data"]
                    : T["columns"][Key]["_"]["data"]
                    | null
            }[K]
        };
        name: T["name"];
        schema: T["schema"];
    }
    $inferInsert: {
        [K in string | number | symbol]: (
            {
                [Key in string as RequiredKeyOnly<Key, T["columns"][Key]>]: T["columns"][Key]["_"]["notNull"] extends true
                    ? T["columns"][Key]["_"]["data"]
                    : T["columns"][Key]["_"]["data"]
                    | null
            } & {
                [Key in string as OptionalKeyOnly<Key, T["columns"][Key], false>]?: T["columns"][Key]["_"]["notNull"] extends true
                    ? T["columns"][Key]["_"]["data"]
                    : (...)[(...)][Key]["_"]["data"]
                    | null
            }
        )[K]
    }
    $inferSelect: {
        [K in string]: {
            [Key in string as Key]: T["columns"][Key]["_"]["notNull"] extends true
                ? T["columns"][Key]["_"]["data"]
                : T["columns"][Key]["_"]["data"]
                | null
        }[K]
    }
    "[entityKind]": string

    Methods