antlr-ng
Version:
Next generation ANTLR Tool
9 lines (8 loc) • 321 B
TypeScript
import type { IAttribute } from "../../../tool/IAttribute.js";
import { IOutputModelFactory } from "../../IOutputModelFactory.js";
import { Decl } from "./Decl.js";
export declare class AttributeDecl extends Decl {
type: string;
initValue?: string;
constructor(factory: IOutputModelFactory, a: IAttribute);
}