Files
beenvoice-app/lib/time-clock-live-activity.types.ts
T
soconnor d3b73464e4 Polish Live Activity branding and add EAS build config.
Use brand mark and wordmark images in the time clock Live Activity, migrate file copies to the modern expo-file-system File API, and add eas.json for TestFlight production builds.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-17 23:39:01 -04:00

16 lines
507 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;
/** file:// URI to square dollar mark in the app-group widgets folder */
markImageUri?: string;
/** file:// URI to wordmark PNG in the app-group widgets folder */
logoImageUri?: string;
};