Browse Source

chore: format

Evan You 2 years ago
parent
commit
8d606c44ec
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/runtime-core/src/component.ts

+ 3 - 1
packages/runtime-core/src/component.ts

@@ -234,7 +234,9 @@ export type SetupContext<
       attrs: Data
       slots: UnwrapSlotsType<S>
       emit: EmitFn<E>
-      expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void
+      expose: <Exposed extends Record<string, any> = Record<string, any>>(
+        exposed?: Exposed,
+      ) => void
     }
   : never