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

ArrowFunctionExpression

interface ArrowFunctionExpression extends ExpressionBase {
async: boolean;
generator: boolean;
params: Pattern[];
returnType?: TsTypeAnnotation;
type: "ArrowFunctionExpression";
typeParameters?: TsTypeParameterDeclaration;
}

§Extends

§
ExpressionBase
[src]

§Properties

§
async: boolean
[src]
§
generator: boolean
[src]
§
params: Pattern[]
[src]
§
type: "ArrowFunctionExpression"
[src]