8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
export interface TimeSplit {
|
|
hours: string
|
|
minutes: string
|
|
seconds: string
|
|
}
|
|
|
|
type GenericObject = Record<string, any>
|