Skip to content

Commit

Permalink
fix: correct scriptBundling return type (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
huang-julien committed Jun 6, 2024
1 parent 9a27113 commit cd1b347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export type RegistryScriptInput<T extends ObjectSchema<any> = EmptyOptionsSchema

export interface RegistryScript {
import?: Import // might just be a component
scriptBundling?: false | ((options?: any) => string)
scriptBundling?: false | ((options?: any) => string | false)
label?: string
src?: string | false
category?: string
Expand Down

0 comments on commit cd1b347

Please sign in to comment.