UNPKG

data-structure-typed

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