@marianfoo/adt-ls - v0.4.1
    Preparing search index...

    Interface InteractiveCallbacks

    interface InteractiveCallbacks {
        user?: string;
        openUrl(url: string): void | Promise<void>;
        promptField?(
            field: { key: string; label: string; sensitive: boolean },
        ): Promise<string | undefined>;
    }
    Index

    Properties

    Methods

    Properties

    user?: string

    Record the destination user.

    Methods

    • Open the SSO URL (browser). The user completes sign-in there.

      Parameters

      • url: string

      Returns void | Promise<void>

    • Prompt for a logon field (e.g. password) when adt-ls asks. Optional.

      Parameters

      • field: { key: string; label: string; sensitive: boolean }

      Returns Promise<string | undefined>