mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
import type { OpenDialogOptions } from 'electron';
|
|
|
|
export type DirectoryDialogOptions = Pick<
|
|
OpenDialogOptions,
|
|
'defaultPath' | 'title' | 'message' | 'buttonLabel'
|
|
>;
|