Cloesce - v0.1.5
    Preparing search index...

    Type Alias Integer

    Integer: number & { __brand?: "Integer" }

    A branded number type indicating that the corresponding SQL column should be created as an INTEGER.

    While all numbers are valid JavaScript types, annotating a field with Integer communicates to Cloesce that this property represents an integer column in SQLite.

    Example:

    D1
    export class Horse {
    PrimaryKey id: Integer;
    height: number; // stored as REAL
    }