Skip to content

Commit 430cc67

Browse files
committed
fix: Update TS types to match native return type
1 parent 0f718b8 commit 430cc67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface ExecutorchModule {
2121
error: string | null;
2222
isModelLoading: boolean;
2323
isModelRunning: boolean;
24-
forward: (input: ETInput, shape: number[]) => Promise<number[]>;
24+
forward: (input: ETInput, shape: number[]) => Promise<number[][]>;
2525
loadMethod: (methodName: string) => Promise<void>;
2626
loadForward: () => Promise<void>;
2727
}

0 commit comments

Comments
 (0)