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

20 lines
316 B
TypeScript
Raw Normal View History

/*
Represents a set of rows indexed by a key.
Used for calculator presets
*/
export interface DataTable {
[key: string]: {
title: string;
/* A JSON schema properties */
columns: {
[key: string]: any;
};
data: {
[key: string]: {
[key: string]: any;
};
};
};
}