mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
20 lines
316 B
TypeScript
20 lines
316 B
TypeScript
|
|
/*
|
||
|
|
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;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|