Files
beenvoice-app/lib/time-clock-live-activity.types.ts
T
soconnor 14c880123c Add beenvoice mobile companion app with full dark mode support.
Expo app with dashboard, time clock, invoices, and settings — native tabs, glass UI, theme-aware components, and iOS Live Activities.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-17 22:36:37 -04:00

12 lines
313 B
TypeScript

export type TimeClockActivityProps = {
/** Full elapsed timer, e.g. 01:23:45 */
elapsed: string;
/** Hours:minutes only for compact chrome, e.g. 1:23 */
elapsedShort: string;
/** Current time, hours:minutes */
clockTime: string;
description: string;
clientName: string;
invoiceLabel: string;
};