/** * @author WMXPY * @namespace Configuration_Editor * @description Presets */ export type ConfigurationEditorPreset = { readonly editCommand: string[]; readonly editHandsFreeCommand: string[]; readonly diffCommand: string[]; }; export declare const configurationEditorEchoPreset: ConfigurationEditorPreset; export declare const configurationEditorVscodeNewWindowPreset: ConfigurationEditorPreset; export declare const configurationEditorPresets: Record;