expo-background-timer
Version:
A background timer module for Expo that allows scheduling and managing timed tasks efficiently, even when the app is in the background.
19 lines • 446 B
TypeScript
export type ChangeEventPayload = {
value: string;
};
export type ExpoBackgroundTimerViewProps = {
name: string;
};
export type BackgroundTimerError = {
message: string;
};
export type BackgroundTimerTimeoutEvent = {
id: number;
};
export type BackgroundTimerTimeoutClearedEvent = {
id: number;
};
export type BackgroundTaskEvent = {
status: "running" | "stopped";
};
//# sourceMappingURL=ExpoBackgroundTimer.types.d.ts.map