Cloesce - v0.0.5-unstable.27
    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 the Cloesce compiler that this property represents an integer column in SQLite.

    Example:

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