Files
freeplanet/src/typings/index.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

27 lines
408 B
TypeScript

// export * from './LoginState';
// export * from './GlobalState.d'
export * from './ProgressBar.d'
export interface IResponse<T> {
success?: boolean,
message?: string,
type: 'error'|'warning'
data: T,
}
export interface ITab {
title: string,
icon?: any,
condition?: boolean,
childs?: boolean,
badge?: number,
to: {
name: string,
params?: {
[x: string]: any
}
}
}