UNPKG

data-structure-typed

Version:
6 lines (4 loc) 139 B
import { LinearBaseOptions } from '../base'; export type QueueOptions<E, R> = LinearBaseOptions<E, R> & { autoCompactRatio?: number; };