Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
technoplato committed Mar 26, 2024
1 parent b9b0d76 commit 49445e0
Show file tree
Hide file tree
Showing 5 changed files with 1,992 additions and 1,992 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export const ApplicationLifecycleEvents = {
applicationForegrounded: 'applicationForegrounded',
applicationBackgrounded: 'applicationBackgrounded',
} as const;

export type ApplicationLifecycleEvent =
(typeof ApplicationLifecycleEvents)[keyof typeof ApplicationLifecycleEvents];

export const ApplicationLifecycleStates = {
applicationInForeground: 'application is in foreground',
applicationInBackground: 'application is in background',
} as const;
Loading

0 comments on commit 49445e0

Please sign in to comment.