版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

macros.d.ts 253 B

12345678910
  1. import type { EmitsOptions, FunctionalComponent } from 'vue'
  2. export declare const defineSetupComponent: <T extends FunctionalComponent>(
  3. fn: T
  4. ) => T
  5. export declare type SetupFC<
  6. P = {},
  7. E extends EmitsOptions = {}
  8. > = FunctionalComponent<P, E>