mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-16 02:14:59 +08:00
13 lines
175 B
TypeScript
13 lines
175 B
TypeScript
interface Window {
|
|
process?: {
|
|
type?: string
|
|
}
|
|
require: NodeRequireFunction
|
|
}
|
|
|
|
declare namespace NodeJS {
|
|
interface ProcessVersions {
|
|
electron?: boolean
|
|
}
|
|
}
|