Files
trailbase/trailbase-core/bindings/Column.ts
Sebastian Jeltsch bdb3735840 Squash all commits for a fresh start.
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
2024-10-30 23:38:56 +01:00

6 lines
315 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { ColumnDataType } from "./ColumnDataType";
import type { ColumnOption } from "./ColumnOption";
export type Column = { name: string, data_type: ColumnDataType, options: Array<ColumnOption>, };