1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

Update PushyOptions strategy to allow null value

This commit is contained in:
sunnylqm 2024-04-02 21:21:15 +08:00
parent 80e0451983
commit de332c1796
No known key found for this signature in database

View File

@ -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;
}