Type Alias FunctionDeclaration<X>

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

Type Parameters

  • X