forked from M3-Academy/m3-academy-template-vtexio
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
|
export interface TimeSplit {
|
||
|
hours: string
|
||
|
minutes: string
|
||
|
seconds: string
|
||
|
}
|
||
|
|
||
|
type GenericObject = Record<string, any>
|