14c880123c
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>
12 lines
313 B
TypeScript
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;
|
|
};
|