Files
omni-tools/src/datatables/types.ts

18 lines
272 B
TypeScript
Raw Normal View History

/*
Represents a set of rows indexed by a key.
Used for calculator presets
*/
export interface DataTable {
2025-04-02 13:38:12 -06:00
title: string;
/* A JSON schema properties */
columns: {
[key: string]: any;
};
data: {
[key: string]: {
[key: string]: any;
};
};
}