A {@const ...} tag

interface ConstTag {
    declaration: VariableDeclaration & {
        declarations: [VariableDeclarator & { id: Pattern; init: Expression }];
    };
    end: number;
    start: number;
    type: "ConstTag";
}

Hierarchy (View Summary)

Properties

declaration: VariableDeclaration & {
    declarations: [VariableDeclarator & { id: Pattern; init: Expression }];
}
end: number
start: number
type: "ConstTag"