Symbol.d.ts 554 B

12345678910111213141516171819
  1. import { Args, Attributes, ParseMethod } from './Types.js';
  2. export declare class Symbol {
  3. private _symbol;
  4. private _char;
  5. private _attributes;
  6. constructor(_symbol: string, _char: string, _attributes: Attributes);
  7. get symbol(): string;
  8. get char(): string;
  9. get attributes(): Attributes;
  10. }
  11. export declare class Macro {
  12. private _symbol;
  13. private _func;
  14. private _args;
  15. constructor(_symbol: string, _func: ParseMethod, _args?: Args[]);
  16. get symbol(): string;
  17. get func(): ParseMethod;
  18. get args(): Args[];
  19. }