UNPKG

astl

Version:

AssemblyScript-STL (Standard Template Library, migrated from the C++)

6 lines (5 loc) 132 B
import { IPushFront } from "./IPushFront"; export declare interface IDeque<T> extends IPushFront<T> { pop_front(): void; }