@milaboratories/pframes-rs-wasm 0.1.0
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/generated/interfaces/milaboratories-pframes-spec.d.ts +24 -0
- package/generated/interfaces/wasi-cli-environment.d.ts +2 -0
- package/generated/interfaces/wasi-cli-exit.d.ts +3 -0
- package/generated/interfaces/wasi-cli-stderr.d.ts +3 -0
- package/generated/interfaces/wasi-cli-stdin.d.ts +3 -0
- package/generated/interfaces/wasi-cli-stdout.d.ts +3 -0
- package/generated/interfaces/wasi-cli-terminal-input.d.ts +8 -0
- package/generated/interfaces/wasi-cli-terminal-output.d.ts +8 -0
- package/generated/interfaces/wasi-cli-terminal-stderr.d.ts +3 -0
- package/generated/interfaces/wasi-cli-terminal-stdin.d.ts +3 -0
- package/generated/interfaces/wasi-cli-terminal-stdout.d.ts +3 -0
- package/generated/interfaces/wasi-io-error.d.ts +8 -0
- package/generated/interfaces/wasi-io-poll.d.ts +9 -0
- package/generated/interfaces/wasi-io-streams.d.ts +29 -0
- package/generated/interfaces/wasi-random-insecure-seed.d.ts +2 -0
- package/generated/interfaces/wasi-random-random.d.ts +2 -0
- package/generated/pframes_rs_wasm.core.wasm +0 -0
- package/generated/pframes_rs_wasm.d.ts +17 -0
- package/generated/pframes_rs_wasm.js +4561 -0
- package/package.json +41 -0
- package/src/axes.ts +20 -0
- package/src/index.ts +15 -0
- package/src/p-frame.ts +110 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/** @module Interface milaboratories:pframes/spec **/
|
|
2
|
+
|
|
3
|
+
export class Axes {
|
|
4
|
+
/**
|
|
5
|
+
* This type does not have a public constructor.
|
|
6
|
+
*/
|
|
7
|
+
private constructor();
|
|
8
|
+
static fromJson(specJson: string): Axes;
|
|
9
|
+
static collapse(idsJson: string): string;
|
|
10
|
+
expand(): string;
|
|
11
|
+
find(selectorJson: string): string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export class Frame {
|
|
15
|
+
/**
|
|
16
|
+
* This type does not have a public constructor.
|
|
17
|
+
*/
|
|
18
|
+
private constructor();
|
|
19
|
+
static fromJson(specJson: string): Frame;
|
|
20
|
+
static deleteColumns(requestJson: string): string;
|
|
21
|
+
findColumns(requestJson: string): string;
|
|
22
|
+
evaluateQuery(requestJson: string): string;
|
|
23
|
+
rewriteLegacyQuery(requestJson: string): string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/** @module Interface wasi:io/streams@0.2.6 **/
|
|
2
|
+
export type Error = import('./wasi-io-error.js').Error;
|
|
3
|
+
export type StreamError = StreamErrorLastOperationFailed | StreamErrorClosed;
|
|
4
|
+
export interface StreamErrorLastOperationFailed {
|
|
5
|
+
tag: 'last-operation-failed',
|
|
6
|
+
val: Error,
|
|
7
|
+
}
|
|
8
|
+
export interface StreamErrorClosed {
|
|
9
|
+
tag: 'closed',
|
|
10
|
+
}
|
|
11
|
+
export type Pollable = import('./wasi-io-poll.js').Pollable;
|
|
12
|
+
|
|
13
|
+
export class InputStream {
|
|
14
|
+
/**
|
|
15
|
+
* This type does not have a public constructor.
|
|
16
|
+
*/
|
|
17
|
+
private constructor();
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export class OutputStream {
|
|
21
|
+
/**
|
|
22
|
+
* This type does not have a public constructor.
|
|
23
|
+
*/
|
|
24
|
+
private constructor();
|
|
25
|
+
checkWrite(): bigint;
|
|
26
|
+
write(contents: Uint8Array): void;
|
|
27
|
+
blockingFlush(): void;
|
|
28
|
+
subscribe(): Pollable;
|
|
29
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// world root:component/root
|
|
2
|
+
export type * as WasiCliEnvironment026 from './interfaces/wasi-cli-environment.js'; // import wasi:cli/environment@0.2.6
|
|
3
|
+
export type * as WasiCliExit026 from './interfaces/wasi-cli-exit.js'; // import wasi:cli/exit@0.2.6
|
|
4
|
+
export type * as WasiCliStderr026 from './interfaces/wasi-cli-stderr.js'; // import wasi:cli/stderr@0.2.6
|
|
5
|
+
export type * as WasiCliStdin026 from './interfaces/wasi-cli-stdin.js'; // import wasi:cli/stdin@0.2.6
|
|
6
|
+
export type * as WasiCliStdout026 from './interfaces/wasi-cli-stdout.js'; // import wasi:cli/stdout@0.2.6
|
|
7
|
+
export type * as WasiCliTerminalInput026 from './interfaces/wasi-cli-terminal-input.js'; // import wasi:cli/terminal-input@0.2.6
|
|
8
|
+
export type * as WasiCliTerminalOutput026 from './interfaces/wasi-cli-terminal-output.js'; // import wasi:cli/terminal-output@0.2.6
|
|
9
|
+
export type * as WasiCliTerminalStderr026 from './interfaces/wasi-cli-terminal-stderr.js'; // import wasi:cli/terminal-stderr@0.2.6
|
|
10
|
+
export type * as WasiCliTerminalStdin026 from './interfaces/wasi-cli-terminal-stdin.js'; // import wasi:cli/terminal-stdin@0.2.6
|
|
11
|
+
export type * as WasiCliTerminalStdout026 from './interfaces/wasi-cli-terminal-stdout.js'; // import wasi:cli/terminal-stdout@0.2.6
|
|
12
|
+
export type * as WasiIoError026 from './interfaces/wasi-io-error.js'; // import wasi:io/error@0.2.6
|
|
13
|
+
export type * as WasiIoPoll026 from './interfaces/wasi-io-poll.js'; // import wasi:io/poll@0.2.6
|
|
14
|
+
export type * as WasiIoStreams026 from './interfaces/wasi-io-streams.js'; // import wasi:io/streams@0.2.6
|
|
15
|
+
export type * as WasiRandomInsecureSeed026 from './interfaces/wasi-random-insecure-seed.js'; // import wasi:random/insecure-seed@0.2.6
|
|
16
|
+
export type * as WasiRandomRandom026 from './interfaces/wasi-random-random.js'; // import wasi:random/random@0.2.6
|
|
17
|
+
export * as spec from './interfaces/milaboratories-pframes-spec.js'; // export milaboratories:pframes/spec
|