Type Alias LexicalForStatement<X>

LexicalForStatement<X>: ForStatement<X> & {
    init: VariableDeclaration<X> & {
        kind: "let" | "const";
    };
}

Type Parameters

  • X