Type Alias AstBlockStatement

AstBlockStatement: OmitStrict<
    hbs.AST.BlockStatement,
    "path"
    | "params"
    | "hash"
    | "program"
    | "inverse",
> & {
    hash: AstHash;
    inverse?: AstProgram;
    params: AstExpression[];
    path: AstBlockPathExpression;
    program: AstProgram;
}