Type Alias FunctionExpression<X>

FunctionExpression<X>: X & {
    async: boolean;
    body: BlockStatement<X>;
    generator: boolean;
    id: VariableIdentifier<X> | null;
    params: RestablePattern<X>[];
    type: "FunctionExpression";
}

Type Parameters

  • X