Files
myprojplanet_vite/src/typings/index.ts

27 lines
410 B
TypeScript
Raw Normal View History

2021-08-31 18:09:59 +02:00
// 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
}
}
}