UNPKG

@jupyterlab/apputils

Version:
13 lines (12 loc) 406 B
import { Dialog } from './dialog'; interface ICommandLinkerTrustDialogOptions { args: string; buttons: ReadonlyArray<Dialog.IButton>; command: string; commandLabel: string; defaultButton: number; hasTrustCommand: boolean; title: string; } export declare function showCommandLinkerTrustDialog(options: ICommandLinkerTrustDialogOptions): Promise<Dialog.IResult<void>>; export {};