Interface OpenDialogOptions

interface OpenDialogOptions {
    buttonLabel?: string;
    filters?: FileFilter[];
    maxWidth?: number;
    modal?: boolean;
    openFiles?: boolean;
    openFolders?: boolean;
    path: string;
    selectMany?: boolean;
    title?: string;
}

Properties

buttonLabel?: string
filters?: FileFilter[]
maxWidth?: number
modal?: boolean
openFiles?: boolean
openFolders?: boolean
path: string
selectMany?: boolean
title?: string