Whalebird-desktop-client-ma.../src/constants/timeFormat/index.d.ts

14 lines
203 B
TypeScript

export type TimeFormatType = {
name: string,
value: number
}
export type TimeFormatList = {
Absolute: TimeFormatType,
Relative: TimeFormatType
}
declare let t: TimeFormatList
export default t