gristlabs_grist-core/app/plugin/GristTable.ts
2024-03-05 08:35:48 -05:00

36 lines
713 B
TypeScript

/**
* Common definitions for Grist plugin APIs.
*/
/**
* Metadata and data for a table.
*/
export interface GristTable {
// This is documenting what is currently returned by the core plugins. Capitalization
// is python-style.
//
// TODO: could be worth reconciling with: /documentation/grist-data-format.md.
table_name: string | null; // currently allow names to be null
column_metadata: GristColumn[];
table_data: any[][];
}
export interface GristTables {
tables: GristTable[];
}
/**
* Metadata about a single column.
*/
export interface GristColumn {
id: string;
type: string;
}
export enum APIType {
ImportSourceAPI,
ImportProcessorAPI,
ParseOptionsAPI,
ParseFileAPI,
}