You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/plugin/GristTable-ti.ts

36 lines
775 B

/**
* This module was automatically generated by `ts-interface-builder`
*/
import * as t from "ts-interface-checker";
// tslint:disable:object-literal-key-quotes
export const GristTable = t.iface([], {
"table_name": t.union("string", "null"),
"column_metadata": t.array("GristColumn"),
"table_data": t.array(t.array("any")),
});
export const GristTables = t.iface([], {
"tables": t.array("GristTable"),
});
export const GristColumn = t.iface([], {
"id": "string",
"type": "string",
});
export const APIType = t.enumtype({
"ImportSourceAPI": 0,
"ImportProcessorAPI": 1,
"ParseOptionsAPI": 2,
"ParseFileAPI": 3,
});
const exportedTypeSuite: t.ITypeSuite = {
GristTable,
GristTables,
GristColumn,
APIType,
};
export default exportedTypeSuite;