We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8510616 commit fb01236Copy full SHA for fb01236
src/types.ts
@@ -17,12 +17,11 @@ export type ETInput =
17
| Float32Array
18
| Float64Array;
19
20
-
21
export interface ExecutorchModule {
22
error: string | null;
23
isModelLoading: boolean;
24
isModelRunning: boolean;
25
forward: (input: ETInput, shape: number[]) => Promise<number[]>;
26
loadMethod: (methodName: string) => Promise<void>;
27
loadForward: () => Promise<void>;
28
-}
+}
0 commit comments