QuestDB JavaScript Client - v5.0.0
    Preparing search index...

    Type Alias QwpWriterRow<Schema>

    QwpWriterRow: {
        [Key in QwpDesignatedTimestampKey<Schema>]-?: QwpWriterColumnInput<
            Schema[Key],
        >
    } & {
        [Key in QwpRegularColumnKey<Schema>]?:
            | QwpWriterColumnInput<Schema[Key]>
            | null
    }

    The object accepted by a table writer compiled from Schema.

    Type Parameters