Interface SaveDialogOptions

interface SaveDialogOptions {
    buttonLabel?: string;
    filters?: FileFilter[];
    maxWidth?: number;
    modal?: boolean;
    path: string;
    title?: string;
}

Properties

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