@solidrt/flux-types 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -8,6 +8,10 @@ declare module "flux:process" {
|
|
|
8
8
|
* `argv[1]` onward are the user-supplied arguments.
|
|
9
9
|
*/
|
|
10
10
|
export let argv: string[]
|
|
11
|
+
/** The host OS: "darwin", "win32", "linux", "android", ... */
|
|
12
|
+
export let platform: string
|
|
13
|
+
/** The CPU architecture: "x64", "arm64", ... */
|
|
14
|
+
export let arch: string
|
|
11
15
|
/**
|
|
12
16
|
* Listen for an OS signal. The callback receives the signal name. Returns an
|
|
13
17
|
* unsubscribe function. Unix only; a no-op elsewhere.
|