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.
9 lines
505 B
9 lines
505 B
|
2 months ago
|
import { type DirectiveNode, type DirectiveTransform, type ElementNode, type ExpressionNode, type SimpleExpressionNode } from '@vue/compiler-core';
|
||
|
|
import type { TransformContext } from '../transform';
|
||
|
|
export interface VOnDirectiveNode extends DirectiveNode {
|
||
|
|
arg: ExpressionNode;
|
||
|
|
exp: SimpleExpressionNode | undefined;
|
||
|
|
}
|
||
|
|
export declare const transformOn: DirectiveTransform;
|
||
|
|
export declare function wrapperVOn(value: ExpressionNode, node: ElementNode, context: TransformContext): ExpressionNode;
|