UNPKG

dotting

Version:

Dotting is a pixel art editor component library for react

12 lines (11 loc) 229 B
export default class Stack<T> { private length; private head; private tail; constructor(); push(data: T): void; pop(): T | null; size(): number; isEmpty(): boolean; clear(): void; }