FunctionExpression
interface FunctionExpression extends Node_2 {
body?: BlockStatement | IfStatement;
isNonScopedSlot?: boolean;
isSlot: boolean;
newline: boolean;
params:
returns?: TemplateChildNode | TemplateChildNode[] | JSChildNode;
}§Properties
§
body?: BlockStatement | IfStatement
[src]§
isNonScopedSlot?: boolean
[src]COMPAT only, indicates a slot function that should be excluded from the legacy $scopedSlots instance property.
§
isSlot: boolean
[src]This flag is for codegen to determine whether it needs to generate the withScopeId() wrapper
§
params: ExpressionNode | string | (ExpressionNode | string)[] | undefined
[src]§
returns?: TemplateChildNode | TemplateChildNode[] | JSChildNode
[src]