Skip to content

Commit

Permalink
chore: add explicit type annotation to initDirectivesForSSR (#11596)
Browse files Browse the repository at this point in the history
  • Loading branch information
jh-leong authored Aug 13, 2024
1 parent 5238e5a commit d0f882d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime-dom/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ let ssrDirectiveInitialized = false
/**
* @internal
*/
export const initDirectivesForSSR = __SSR__
export const initDirectivesForSSR: () => void = __SSR__
? () => {
if (!ssrDirectiveInitialized) {
ssrDirectiveInitialized = true
Expand Down

0 comments on commit d0f882d

Please sign in to comment.