Skip to content

Commit

Permalink
Update PushyOptions strategy to allow null value
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnylqm committed Apr 2, 2024
1 parent 80e0451 commit de332c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export interface PushyOptions {
server?: PushyServerConfig;
logger?: UpdateEventsLogger;
useAlert?: boolean;
strategy?: 'onAppStart' | 'onAppResume' | 'both';
strategy?: 'onAppStart' | 'onAppResume' | 'both' | null;
autoMarkSuccess?: boolean;
dismissErrorAfter?: number;
}

0 comments on commit de332c1

Please sign in to comment.