Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
289Adam289 committed Feb 5, 2025
1 parent 11b4639 commit 829f608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/runOnLiveMarkdownRuntime/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Reanimated does not support runOnRuntime() on web
function runOnLiveMarkdownRuntime<Args extends unknown[], ReturnValue>(worklet: (...args: Args) => ReturnValue) {
function runOnLiveMarkdownRuntime<Args extends unknown[], ReturnType>(worklet: (...args: Args) => ReturnType) {
return worklet;
}

Expand Down

0 comments on commit 829f608

Please sign in to comment.