interface UstraAuthDuplicationCheckerOptions {
    authInfoProvider: (() => {
        procId: string;
        token: string;
        userKey: string;
    });
    onDuplicated: (() => void);
    onExpired: (() => void);
}

Properties

authInfoProvider: (() => {
    procId: string;
    token: string;
    userKey: string;
})

Type declaration

    • (): {
          procId: string;
          token: string;
          userKey: string;
      }
    • Returns {
          procId: string;
          token: string;
          userKey: string;
      }

      • procId: string
      • token: string
      • userKey: string
onDuplicated: (() => void)

Type declaration

    • (): void
    • Returns void

onExpired: (() => void)

Type declaration

    • (): void
    • Returns void

Generated using TypeDoc