mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add antlr4 definitions/types * Update the tsconfig.json for the antlr4 types * Update the tsconfig.json for the antlr4 types. Use files instead of includes. * Remove antlr4-test.ts to antlr4-tests.ts, for the antlr4 types * Remove the c-parser.ts, for the antlr4 types. As this is not allowed in the antlr4-test.ts * Fix antlr4 types test lint failure * Update the linting and the tslint.json * Update the tslint.json, for antlr4 types
16 lines
558 B
TypeScript
16 lines
558 B
TypeScript
// Type definitions for antlr4 4.7
|
|
// Project: https://github.com/antlr/antlr4
|
|
// Definitions by: Marlon Chatman <https://github.com/mcchatman8009>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
export * from './Lexer';
|
|
export * from './Parser';
|
|
export * from './Recognizer';
|
|
export * from './ParserRuleContext';
|
|
export * from './IntervalSet';
|
|
export * from './CommonTokenStream';
|
|
export * from './InputStream';
|
|
export * from './Token';
|
|
import { ParserRuleContext } from './ParserRuleContext';
|
|
|
|
export type AntlrRule = ParserRuleContext;
|