mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-17 17:30:17 -04:00
9 lines
183 B
TypeScript
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; |