Skip to content

Commit 429bc47

Browse files
fix: missing "/*" in common.ts
1 parent d1f1ad5 commit 429bc47

File tree

1 file changed

+2
-1
lines changed
  • packages/react-native-executorch/src/types

1 file changed

+2
-1
lines changed

packages/react-native-executorch/src/types/common.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ export interface Frame {
194194
getNativeBuffer(): { pointer: bigint; release(): void };
195195
}
196196

197+
/** *
197198
* A readonly record mapping string keys to numeric or string values.
198199
* Used to represent enum-like label maps for models.
199200
*
@@ -206,4 +207,4 @@ export type LabelEnum = Readonly<Record<string, number | string>>;
206207
*
207208
* @category Types
208209
*/
209-
export type Triple<T> = readonly [T, T, T];
210+
export type Triple<T> = readonly [T, T, T];

0 commit comments

Comments
 (0)