12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
/**
|
|
* @packageDocumentation
|
|
* @module std.internal
|
|
*/
|
|
import { IPushFront } from "./IPushFront";
|
|
export interface IDeque<T> extends IPushFront<T> {
|
|
/**
|
|
* Erase the first element.
|
|
*/
|
|
pop_front(): void;
|
|
}
|