@cascode/cascode-js 0.5.2
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/README.md +98 -0
- package/binding.gyp +26 -0
- package/lib/std/Bundles.cas +6 -0
- package/lib/std/InverterLike.cas +11 -0
- package/lib/std/amp/Common.cas +16 -0
- package/lib/std/amp/FullyDifferentialOpAmp.cas +61 -0
- package/lib/std/amp/SingleEndedAmp.cas +48 -0
- package/lib/std/amp/SingleEndedOpAmp.cas +48 -0
- package/lib/std/bench/DCBiasBenches.cas +41 -0
- package/lib/std/bench/NoiseBenches.cas +167 -0
- package/lib/std/bench/PowerBenches.cas +202 -0
- package/lib/std/bench/TranBenches.cas +164 -0
- package/lib/std/bench/TransferBenches.cas +329 -0
- package/lib/std/composites/PadDriver.cas +10 -0
- package/lib/std/prim/Devices.cas +20 -0
- package/lib/std/prim/Passives.cas +23 -0
- package/lib/std/refs/ConstantGm.cas +25 -0
- package/lib/std/refs/CurrentReference.cas +7 -0
- package/lib/std/refs/ReferenceCircuit.cas +6 -0
- package/lib/std/refs/VoltageReference.cas +7 -0
- package/native/cascode_native_addon.c +788 -0
- package/native/osx-arm64/Cascode.Native.dylib +0 -0
- package/native/osx-arm64/google-ortools-native.dylib +0 -0
- package/native/osx-arm64/libortools.9.dylib +0 -0
- package/package.json +48 -0
- package/platform-packages/cascode-js-darwin-arm64/README.md +4 -0
- package/platform-packages/cascode-js-darwin-arm64/index.js +10 -0
- package/platform-packages/cascode-js-darwin-arm64/package.json +28 -0
- package/platform-packages/cascode-js-darwin-x64/README.md +4 -0
- package/platform-packages/cascode-js-darwin-x64/index.js +10 -0
- package/platform-packages/cascode-js-darwin-x64/package.json +28 -0
- package/platform-packages/cascode-js-linux-x64/README.md +4 -0
- package/platform-packages/cascode-js-linux-x64/index.js +10 -0
- package/platform-packages/cascode-js-linux-x64/package.json +28 -0
- package/platform-packages/cascode-js-win32-x64/README.md +4 -0
- package/platform-packages/cascode-js-win32-x64/index.js +10 -0
- package/platform-packages/cascode-js-win32-x64/package.json +28 -0
- package/scripts/stage-platform-package.mjs +128 -0
- package/scripts/sync-stdlib.mjs +35 -0
- package/src/index.d.ts +38 -0
- package/src/index.js +453 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cascode/cascode-js",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "Synchronous Node binding for libcascode",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"types": "src/index.d.ts",
|
|
7
|
+
"license": "BSD-3-Clause",
|
|
8
|
+
"private": false,
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/daniellovell/cascode.git",
|
|
15
|
+
"directory": "editors/node"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"src/**/*",
|
|
19
|
+
"native/**/*",
|
|
20
|
+
"lib/std/**/*.cas",
|
|
21
|
+
"binding.gyp",
|
|
22
|
+
"README.md",
|
|
23
|
+
"platform-packages/**/*",
|
|
24
|
+
"scripts/**/*"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=20"
|
|
28
|
+
},
|
|
29
|
+
"gypfile": false,
|
|
30
|
+
"optionalDependencies": {
|
|
31
|
+
"@cascode/cascode-js-darwin-arm64": "0.5.2",
|
|
32
|
+
"@cascode/cascode-js-darwin-x64": "0.5.2",
|
|
33
|
+
"@cascode/cascode-js-linux-x64": "0.5.2",
|
|
34
|
+
"@cascode/cascode-js-win32-x64": "0.5.2"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "node-gyp rebuild",
|
|
38
|
+
"stage:platform": "node ./scripts/stage-platform-package.mjs",
|
|
39
|
+
"prepack": "node ./scripts/sync-stdlib.mjs",
|
|
40
|
+
"test:integration": "node --test test/integration.test.mjs",
|
|
41
|
+
"test:types": "tsc -p tsconfig.json --noEmit",
|
|
42
|
+
"test": "npm run test:integration && npm run test:types"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"node-gyp": "^11.1.0",
|
|
46
|
+
"typescript": "^5.9.2"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const path = require("path");
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
addonPath: path.join(__dirname, "prebuilds", "cascode_native_addon.node"),
|
|
7
|
+
libraryPath: path.join(__dirname, "native", "osx-arm64", "Cascode.Native.dylib"),
|
|
8
|
+
libraryDir: path.join(__dirname, "native", "osx-arm64"),
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cascode/cascode-js-darwin-arm64",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "Prebuilt macOS arm64 runtime bundle for @cascode/cascode-js",
|
|
5
|
+
"license": "BSD-3-Clause",
|
|
6
|
+
"private": false,
|
|
7
|
+
"main": "index.js",
|
|
8
|
+
"os": [
|
|
9
|
+
"darwin"
|
|
10
|
+
],
|
|
11
|
+
"cpu": [
|
|
12
|
+
"arm64"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"README.md",
|
|
17
|
+
"prebuilds/**/*",
|
|
18
|
+
"native/**/*"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/daniellovell/cascode.git",
|
|
26
|
+
"directory": "editors/node/platform-packages/cascode-js-darwin-arm64"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const path = require("path");
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
addonPath: path.join(__dirname, "prebuilds", "cascode_native_addon.node"),
|
|
7
|
+
libraryPath: path.join(__dirname, "native", "osx-x64", "Cascode.Native.dylib"),
|
|
8
|
+
libraryDir: path.join(__dirname, "native", "osx-x64"),
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cascode/cascode-js-darwin-x64",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "Prebuilt macOS x64 runtime bundle for @cascode/cascode-js",
|
|
5
|
+
"license": "BSD-3-Clause",
|
|
6
|
+
"private": false,
|
|
7
|
+
"main": "index.js",
|
|
8
|
+
"os": [
|
|
9
|
+
"darwin"
|
|
10
|
+
],
|
|
11
|
+
"cpu": [
|
|
12
|
+
"x64"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"README.md",
|
|
17
|
+
"prebuilds/**/*",
|
|
18
|
+
"native/**/*"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/daniellovell/cascode.git",
|
|
26
|
+
"directory": "editors/node/platform-packages/cascode-js-darwin-x64"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const path = require("path");
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
addonPath: path.join(__dirname, "prebuilds", "cascode_native_addon.node"),
|
|
7
|
+
libraryPath: path.join(__dirname, "native", "linux-x64", "Cascode.Native.so"),
|
|
8
|
+
libraryDir: path.join(__dirname, "native", "linux-x64"),
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cascode/cascode-js-linux-x64",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "Prebuilt Linux x64 runtime bundle for @cascode/cascode-js",
|
|
5
|
+
"license": "BSD-3-Clause",
|
|
6
|
+
"private": false,
|
|
7
|
+
"main": "index.js",
|
|
8
|
+
"os": [
|
|
9
|
+
"linux"
|
|
10
|
+
],
|
|
11
|
+
"cpu": [
|
|
12
|
+
"x64"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"README.md",
|
|
17
|
+
"prebuilds/**/*",
|
|
18
|
+
"native/**/*"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/daniellovell/cascode.git",
|
|
26
|
+
"directory": "editors/node/platform-packages/cascode-js-linux-x64"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const path = require("path");
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
addonPath: path.join(__dirname, "prebuilds", "cascode_native_addon.node"),
|
|
7
|
+
libraryPath: path.join(__dirname, "native", "win-x64", "Cascode.Native.dll"),
|
|
8
|
+
libraryDir: path.join(__dirname, "native", "win-x64"),
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cascode/cascode-js-win32-x64",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "Prebuilt Windows x64 runtime bundle for @cascode/cascode-js",
|
|
5
|
+
"license": "BSD-3-Clause",
|
|
6
|
+
"private": false,
|
|
7
|
+
"main": "index.js",
|
|
8
|
+
"os": [
|
|
9
|
+
"win32"
|
|
10
|
+
],
|
|
11
|
+
"cpu": [
|
|
12
|
+
"x64"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"README.md",
|
|
17
|
+
"prebuilds/**/*",
|
|
18
|
+
"native/**/*"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/daniellovell/cascode.git",
|
|
26
|
+
"directory": "editors/node/platform-packages/cascode-js-win32-x64"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import fs from "node:fs/promises";
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
import { fileURLToPath } from "node:url";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Retrieve the value for a command-line argument provided in the form `--name=value`.
|
|
7
|
+
* @param {string} name - Argument name without leading dashes.
|
|
8
|
+
* @returns {string} The value after the `=` for the matching argument, or an empty string if not found.
|
|
9
|
+
*/
|
|
10
|
+
function readArg(name) {
|
|
11
|
+
const prefix = `--${name}=`;
|
|
12
|
+
const value = process.argv.find((arg) => arg.startsWith(prefix));
|
|
13
|
+
return value ? value.slice(prefix.length) : "";
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const packageName = readArg("package");
|
|
17
|
+
const rid = readArg("rid");
|
|
18
|
+
const libName = readArg("lib");
|
|
19
|
+
const rawVersion = readArg("version");
|
|
20
|
+
const version = rawVersion.startsWith("v") ? rawVersion.slice(1) : rawVersion;
|
|
21
|
+
const outDirArg = readArg("out");
|
|
22
|
+
|
|
23
|
+
if (!packageName || !rid || !libName || !version || !outDirArg) {
|
|
24
|
+
throw new Error(
|
|
25
|
+
"Missing required args. Expected --package=... --rid=... --lib=... --version=... --out=..."
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const scriptFile = fileURLToPath(import.meta.url);
|
|
30
|
+
const nodeRoot = path.resolve(path.dirname(scriptFile), "..");
|
|
31
|
+
const repoRoot = path.resolve(nodeRoot, "..", "..");
|
|
32
|
+
const packageShort = packageName.replace("@cascode/", "");
|
|
33
|
+
const templateDir = path.join(nodeRoot, "platform-packages", packageShort);
|
|
34
|
+
const outDir = path.resolve(outDirArg);
|
|
35
|
+
|
|
36
|
+
const addonSrc = path.join(nodeRoot, "build", "Release", "cascode_native_addon.node");
|
|
37
|
+
const nativeSrcDir = path.join(repoRoot, "build", "native", rid);
|
|
38
|
+
const expectedLibPath = path.join(nativeSrcDir, libName);
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Ensure the given filesystem path exists.
|
|
42
|
+
*
|
|
43
|
+
* @param {string} targetPath - Path to check for existence.
|
|
44
|
+
* @param {string} label - Human-readable label used in the error message if the path is missing.
|
|
45
|
+
* @throws {Error} If the path does not exist.
|
|
46
|
+
*/
|
|
47
|
+
async function ensureExists(targetPath, label) {
|
|
48
|
+
const stat = await fs.stat(targetPath).catch(() => null);
|
|
49
|
+
if (!stat) {
|
|
50
|
+
throw new Error(`Missing ${label}: ${targetPath}`);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Recursively copies files and directories from sourceDir into targetDir, excluding files that end with `.pdb` (case-insensitive).
|
|
56
|
+
* @param {string} sourceDir - Path to the source directory to copy from.
|
|
57
|
+
* @param {string} targetDir - Path to the destination directory to copy into; created recursively if it does not exist.
|
|
58
|
+
*/
|
|
59
|
+
async function copyRuntimeFiles(sourceDir, targetDir) {
|
|
60
|
+
await fs.mkdir(targetDir, { recursive: true });
|
|
61
|
+
const entries = await fs.readdir(sourceDir, { withFileTypes: true });
|
|
62
|
+
for (const entry of entries) {
|
|
63
|
+
const sourcePath = path.join(sourceDir, entry.name);
|
|
64
|
+
const targetPath = path.join(targetDir, entry.name);
|
|
65
|
+
|
|
66
|
+
if (entry.isDirectory()) {
|
|
67
|
+
await copyRuntimeFiles(sourcePath, targetPath);
|
|
68
|
+
continue;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
const lowerName = entry.name.toLowerCase();
|
|
72
|
+
if (lowerName.endsWith(".pdb")) continue;
|
|
73
|
+
await fs.copyFile(sourcePath, targetPath);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Prepare and stage a platform package into the configured output directory.
|
|
79
|
+
*
|
|
80
|
+
* Validates required resources, recreates the output directory, copies the package
|
|
81
|
+
* template, updates the package.json version, installs the built native addon into
|
|
82
|
+
* a prebuilds folder, copies native runtime files for the target RID, and logs the
|
|
83
|
+
* final staged location.
|
|
84
|
+
*/
|
|
85
|
+
async function run() {
|
|
86
|
+
await ensureExists(templateDir, "template directory");
|
|
87
|
+
await ensureExists(addonSrc, "built addon");
|
|
88
|
+
await ensureExists(nativeSrcDir, "published native runtime directory");
|
|
89
|
+
await ensureExists(expectedLibPath, "expected runtime shared library");
|
|
90
|
+
|
|
91
|
+
const resolvedRepoRoot = path.resolve(repoRoot);
|
|
92
|
+
const resolvedOutDir = path.resolve(outDir);
|
|
93
|
+
const outDirRoot = path.parse(resolvedOutDir).root;
|
|
94
|
+
const outDirIsDescendantOfRepoRoot = resolvedOutDir.startsWith(
|
|
95
|
+
`${resolvedRepoRoot}${path.sep}`
|
|
96
|
+
);
|
|
97
|
+
|
|
98
|
+
if (
|
|
99
|
+
resolvedOutDir === outDirRoot ||
|
|
100
|
+
resolvedOutDir === resolvedRepoRoot ||
|
|
101
|
+
!outDirIsDescendantOfRepoRoot
|
|
102
|
+
) {
|
|
103
|
+
throw new Error(
|
|
104
|
+
`Unsafe delete target in run(): outDir="${resolvedOutDir}" must be a descendant of repoRoot="${resolvedRepoRoot}" and must not be filesystem root or repoRoot.`
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
await fs.rm(resolvedOutDir, { recursive: true, force: true });
|
|
109
|
+
await fs.mkdir(resolvedOutDir, { recursive: true });
|
|
110
|
+
await fs.cp(templateDir, resolvedOutDir, { recursive: true });
|
|
111
|
+
|
|
112
|
+
const pkgPath = path.join(resolvedOutDir, "package.json");
|
|
113
|
+
const pkg = JSON.parse(await fs.readFile(pkgPath, "utf8"));
|
|
114
|
+
pkg.version = version;
|
|
115
|
+
await fs.writeFile(pkgPath, `${JSON.stringify(pkg, null, 2)}\n`, "utf8");
|
|
116
|
+
|
|
117
|
+
const prebuildDir = path.join(resolvedOutDir, "prebuilds");
|
|
118
|
+
await fs.mkdir(prebuildDir, { recursive: true });
|
|
119
|
+
await fs.copyFile(addonSrc, path.join(prebuildDir, "cascode_native_addon.node"));
|
|
120
|
+
|
|
121
|
+
const nativeOutDir = path.join(resolvedOutDir, "native", rid);
|
|
122
|
+
await fs.mkdir(path.dirname(nativeOutDir), { recursive: true });
|
|
123
|
+
await copyRuntimeFiles(nativeSrcDir, nativeOutDir);
|
|
124
|
+
|
|
125
|
+
console.log(`Staged ${packageName}@${version} at ${resolvedOutDir}`);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
await run();
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import fs from "node:fs/promises";
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
import { fileURLToPath } from "node:url";
|
|
4
|
+
|
|
5
|
+
const scriptFile = fileURLToPath(import.meta.url);
|
|
6
|
+
const nodeRoot = path.resolve(path.dirname(scriptFile), "..");
|
|
7
|
+
const repoRoot = path.resolve(nodeRoot, "..", "..");
|
|
8
|
+
|
|
9
|
+
const stdlibSrc = path.join(repoRoot, "lib", "std");
|
|
10
|
+
const stdlibDst = path.join(nodeRoot, "lib", "std");
|
|
11
|
+
|
|
12
|
+
async function pathExists(p) {
|
|
13
|
+
return fs.stat(p).then(
|
|
14
|
+
() => true,
|
|
15
|
+
() => false
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
async function ensureStdlibPresent() {
|
|
20
|
+
const ok = await pathExists(stdlibSrc);
|
|
21
|
+
if (!ok) {
|
|
22
|
+
throw new Error(`[cascode-native] stdlib source directory not found: ${stdlibSrc}`);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
async function run() {
|
|
27
|
+
await ensureStdlibPresent();
|
|
28
|
+
await fs.mkdir(path.dirname(stdlibDst), { recursive: true });
|
|
29
|
+
await fs.rm(stdlibDst, { recursive: true, force: true });
|
|
30
|
+
await fs.cp(stdlibSrc, stdlibDst, { recursive: true });
|
|
31
|
+
console.log(`[cascode-native] Staged stdlib into package at: ${stdlibDst}`);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
await run();
|
|
35
|
+
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export interface CascodeNative {
|
|
2
|
+
createSession(optionsJson?: string): number;
|
|
3
|
+
destroySession(session: number): void;
|
|
4
|
+
call(session: number, method: string, requestJson: string): string;
|
|
5
|
+
lastErrorJson(session: number): string | null;
|
|
6
|
+
apiVersion(): string;
|
|
7
|
+
schemaVersion(): string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const native: CascodeNative;
|
|
11
|
+
|
|
12
|
+
/** Absolute path to the bundled standard library (lib/std) directory. */
|
|
13
|
+
export const stdlibPath: string;
|
|
14
|
+
|
|
15
|
+
export function createSession(optionsJson?: string): number;
|
|
16
|
+
export function destroySession(session: number): void;
|
|
17
|
+
export function call(session: number, method: string, requestJson: string): string;
|
|
18
|
+
export function lastErrorJson(session: number): string | null;
|
|
19
|
+
export function apiVersion(): string;
|
|
20
|
+
export function schemaVersion(): string;
|
|
21
|
+
|
|
22
|
+
export type NativeMethodCall = <Req extends object, Res>(
|
|
23
|
+
native: CascodeNative,
|
|
24
|
+
session: number,
|
|
25
|
+
req: Req
|
|
26
|
+
) => Res;
|
|
27
|
+
|
|
28
|
+
export const open: NativeMethodCall;
|
|
29
|
+
export const updateText: NativeMethodCall;
|
|
30
|
+
export const close: NativeMethodCall;
|
|
31
|
+
export const render: NativeMethodCall;
|
|
32
|
+
export const applyOps: NativeMethodCall;
|
|
33
|
+
export const erc: NativeMethodCall;
|
|
34
|
+
export const emit: NativeMethodCall;
|
|
35
|
+
export const verify: NativeMethodCall;
|
|
36
|
+
export const jobStart: NativeMethodCall;
|
|
37
|
+
export const jobPoll: NativeMethodCall;
|
|
38
|
+
export const jobCancel: NativeMethodCall;
|