export declare class limitedArray { _array: unknown[]; _limit: number; /** * Used to construct the LimitedArray * Defaults to 100 when no size is passed in * @param size */ constructor(size?: number); /** * Add items to the end of an array * @param item */ push(item: unknown): void; /** * Return the items within the array * @returns {[]} */ get(): unknown[]; /** * Limits the size of the array * @param size */ limit(size: number): void; /** * Returns the length of the array * @returns {number} */ length(): number; /** * Bulk add an array to the array * @param items */ add(items: unknown[]): void; /** * Remove an item from the beginning of an array * @returns {*} */ shift(): unknown; } //# sourceMappingURL=limitedArray.d.ts.map