Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FunctionExpression

interface FunctionExpression extends Node_2 {
isNonScopedSlot?: boolean;
isSlot: boolean;
newline: boolean;
params:
| string
| (ExpressionNode | string)[]
| undefined;
}

§Extends

§
Node_2
[src]

§Properties

§
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

§
newline: boolean
[src]
§
params: ExpressionNode | string | (ExpressionNode | string)[] | undefined
[src]