UNPKG

dt-sql-parser

Version:

SQL Parsers for BigData, built with antlr4

11 lines (10 loc) 195 B
export declare class SimpleStack<T> { constructor(); private stack; push(item: T): void; pop(): T; peek(): T; clear(): void; size(): number; isEmpty(): boolean; }