UNPKG

209 BTypeScriptView Raw
1interface OpenExternalOptions {
2 activate?: boolean
3 workingDirectory?: string
4}
5
6declare module "electron" {
7 export const shell: {
8 openExternal(url: string, options?: OpenExternalOptions): void
9 }
10}