Skip to content

Commit

Permalink
cleanup unnecessary globals
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Forster committed May 21, 2018
1 parent 5c57361 commit 9ff56aa
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions script/globals.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,40 +6,6 @@ type Package = {
devDependencies: PackageLookup
}

// type declarations for electron-installer-redhat
type RedhatOptions = {
src: string
dest: string
arch: string
}

type ElectronInstallerRedhat = (
options: RedhatOptions,
callback: (error: Error | null) => void
) => void

// type declarations for electron-installer-debian
type DebianOptions = {
src: string
dest: string
arch: string
}

type ElectronInstallerDebian = (
options: DebianOptions,
callback: (error: Error | null) => void
) => void

// type declarations for electron-installer-appimage
type AppImageOptions = {
dir: string
targetArch: string
}

type ElectronInstallerAppImage = {
default: (options: AppImageOptions) => Promise<void>
}

declare namespace NodeJS {
// eslint-disable-next-line typescript/interface-name-prefix
interface Process extends EventEmitter {
Expand Down

0 comments on commit 9ff56aa

Please sign in to comment.