Type alias OpenWindowHandler

OpenWindowHandler: ((url: string, options: {
    target?: string;
    title: string;
    [option: string]: string | number | undefined;
}) => any | null)

Type declaration

    • (url: string, options: {
          target?: string;
          title: string;
          [option: string]: string | number | undefined;
      }): any | null
    • An window open handler which can be used to open up the OAuth Window

      Returns

      An optional opened window handle which will be returned by the redirect based OAuth flow. If null is returned it indicates that the open window have bee failed

      Parameters

      • url: string

        Thw URl which should be opened in the Popup

      • options: {
            target?: string;
            title: string;
            [option: string]: string | number | undefined;
        }

        Additional window options

        • [option: string]: string | number | undefined
        • Optional target?: string
        • title: string

      Returns any | null

Generated using TypeDoc