SourceTermAnalysisSystem_vue/node_modules/@vue-macros/setup-component/macros.d.ts
2026-05-15 10:22:44 +08:00

12 lines
297 B
TypeScript

import type { EmitsOptions, FunctionalComponent } from 'vue'
export declare const defineSetupComponent: <T extends FunctionalComponent>(
fn: T,
) => T
export declare type SetupFC<
P = {},
E extends EmitsOptions = {},
S extends Record<string, any> = any,
> = FunctionalComponent<P, E, S>