1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-06 20:10:05 +00:00

chore(redirectLogin): onLoggedOut callback should be an async

This commit is contained in:
Saad Jutt
2021-09-02 13:43:07 +05:00
parent f231edb4a6
commit f40a86f0f6
4 changed files with 17 additions and 120 deletions

View File

@@ -1,3 +1,3 @@
export interface LoginOptions {
onLoggedOut?: Function
onLoggedOut?: () => Promise<boolean>
}