bsky-app/src/state/lib/bg-scheduler.web.ts
2023-01-26 12:36:27 -06:00

13 lines
288 B
TypeScript

type BackgroundFetchStatus = 0 | 1 | 2
export async function configure(
_handler: (taskId: string) => Promise<void>,
_timeoutHandler: (taskId: string) => Promise<void>,
): Promise<BackgroundFetchStatus> {
// TODO
return 0
}
export function finish(_taskId: string) {
// TODO
}