更新
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import { type DirectiveNode, type ElementNode, type IfNode } from '@vue/compiler-core';
|
||||
import { type NodeTransform, type TransformContext } from '../transform';
|
||||
interface IfOptions {
|
||||
name: string;
|
||||
condition?: string;
|
||||
}
|
||||
export type IfElementNode = ElementNode & {
|
||||
vIf: IfOptions;
|
||||
};
|
||||
export declare function isIfElementNode(node: unknown): node is IfElementNode;
|
||||
export declare const transformIf: NodeTransform;
|
||||
export declare function processIf(node: ElementNode, dir: DirectiveNode, context: TransformContext, processCodegen?: (node: IfNode, branch: IfElementNode, isRoot: boolean) => (() => void) | undefined): (() => void) | undefined;
|
||||
export {};
|
||||
Reference in New Issue
Block a user