UNPKG

templates-mo

Version:

Templates is a scaffolding framework that makes code generation simple, dynamic, and reusable. Generate files, parts of your app, or whole project structures—without the repetitive copy-pasting

10 lines (9 loc) • 211 B
export declare class Stack<TData = any> { _stack: TData[]; constructor(); push(...args: TData[]): void; pop(): TData | null; stack(): TData[]; next(): TData | null; size(): number; }