q9
This commit is contained in:
8
node_modules/@vue/test-utils/dist/renderToString.d.ts
generated
vendored
Normal file
8
node_modules/@vue/test-utils/dist/renderToString.d.ts
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
import { DefineComponent } from 'vue';
|
||||
import { ComponentMountingOptions } from './mount';
|
||||
import { RenderMountingOptions } from './types';
|
||||
export declare function renderToString<T, C = T extends ((...args: any) => any) | (new (...args: any) => any) ? T : T extends {
|
||||
props?: infer Props;
|
||||
} ? DefineComponent<Props extends Readonly<(infer PropNames)[]> | (infer PropNames)[] ? {
|
||||
[key in PropNames extends string ? PropNames : string]?: any;
|
||||
} : Props> : DefineComponent>(originalComponent: T, options?: ComponentMountingOptions<C> & Pick<RenderMountingOptions<any>, 'attachTo'>): Promise<string>;
|
||||
Reference in New Issue
Block a user