Skip to content

Commit d0f882d

Browse files
authored
chore: add explicit type annotation to initDirectivesForSSR (#11596)
1 parent 5238e5a commit d0f882d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-dom/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ let ssrDirectiveInitialized = false
283283
/**
284284
* @internal
285285
*/
286-
export const initDirectivesForSSR = __SSR__
286+
export const initDirectivesForSSR: () => void = __SSR__
287287
? () => {
288288
if (!ssrDirectiveInitialized) {
289289
ssrDirectiveInitialized = true

0 commit comments

Comments
 (0)