compass/compass/utils/models/DataPoint.ts
2024-10-30 10:52:01 -04:00

9 lines
183 B
TypeScript

/**
* Represents metadata of the Resource, Service, and User models to be used in a table
*/
interface DataPoint {
id: number;
visible: boolean;
}
export default DataPoint;