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