Files
freeplanet/src/typings/ProgressBar.d.ts
Paolo Arena eda9a8514f - starting project list...
- ordering some functions
- fix error TS2339

quasar.extensions.json was the problem !
inside had:
{
  "@quasar/typescript": {
    "webpack": "plugin",
    "rename": true
  }
}
2019-03-21 20:43:15 +01:00

9 lines
172 B
TypeScript

export interface IProgressState {
percent: number,
show: boolean,
canSuccess: boolean,
duration: number,
height: string,
color: string,
failedColor: string,
}