Interface QuickFileSelectOptions

interface QuickFileSelectOptions {
    hideIgnoredFiles?: boolean;
    onSelect?: ((item) => void);
}

Properties

hideIgnoredFiles?: boolean

Whether to hide .gitignored (and other ignored) files.

onSelect?: ((item) => void)

Executed when the item is selected.

Type declaration