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.
10 lines
467 B
10 lines
467 B
6 months ago
|
import { ElementNode, TemplateLiteral, Property } from '@vue/compiler-core';
|
||
|
import { NodeTransform, TransformContext } from '../transform';
|
||
|
export interface DirectiveTransformResult {
|
||
|
props: Property[];
|
||
|
needRuntime?: boolean | symbol;
|
||
|
ssrTagParts?: TemplateLiteral['elements'];
|
||
|
}
|
||
|
export declare const transformElement: NodeTransform;
|
||
|
export declare function processProps(node: ElementNode, context: TransformContext, props?: ElementNode['props']): void;
|