mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
type Package = {
|
|
productName?: string
|
|
dependencies: Record<string, string>
|
|
devDependencies?: Record<string, string>
|
|
}
|
|
|
|
declare namespace NodeJS {
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
interface Process extends EventEmitter {
|
|
on(event: 'unhandledRejection', listener: (error: Error) => void): this
|
|
}
|
|
}
|