summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/classes/table-status.ts
blob: fa9be80fef75cb06ce830e5af555327dd42d4c75 (plain)
1
2
3
export class TableStatus {
  constructor(public type: 'info' | 'warning' | 'danger' | 'light' = 'light', public msg = '') {}
}