15 lines
462 B
TypeScript
15 lines
462 B
TypeScript
export type TimeClockActivityProps = {
|
|
/** Unix ms when the timer started — drives native live-updating Text timers */
|
|
startedAtMs: number;
|
|
/** Full elapsed timer, e.g. 01:23:45 (updated on sync) */
|
|
elapsed: string;
|
|
/** Hours:minutes only for compact chrome, e.g. 1:23 */
|
|
elapsedShort: string;
|
|
/** Current time, hours:minutes */
|
|
clockTime: string;
|
|
description: string;
|
|
clientName: string;
|
|
businessName: string;
|
|
invoiceLabel: string;
|
|
};
|