20 lines
381 B
TypeScript
Vendored
20 lines
381 B
TypeScript
Vendored
import { PakeCliOptions } from './types.js';
|
|
|
|
export const DEFAULT_PAKE_OPTIONS: PakeCliOptions = {
|
|
icon: '',
|
|
height: 780,
|
|
width: 1200,
|
|
fullscreen: false,
|
|
resizable: true,
|
|
transparent: false,
|
|
userAgent: '',
|
|
showMenu: false,
|
|
showSystemTray: false,
|
|
multiArch: false,
|
|
targets: 'deb',
|
|
iterCopyFile: false,
|
|
systemTrayIcon: '',
|
|
debug: false,
|
|
inject: [],
|
|
};
|