mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 21:15:47 +00:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
/**
|
|
* This is an extension of Node's `process` object to include the browser
|
|
* property, which is added by webpack.
|
|
*/
|
|
interface AmbiguousProcess extends NodeJS.Process {
|
|
browser?: true
|
|
}
|
|
|
|
declare var process: AmbiguousProcess; |