d3b73464e4
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>
16 lines
507 B
TypeScript
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;
|
|
};
|