@algorithm.ts/circular-queue
Advanced tools
Comparing version 1.0.22 to 1.0.23
@@ -8,2 +8,2 @@ import type { CircularQueue } from './types'; | ||
*/ | ||
export declare function createCircularQueue<T extends unknown>(): CircularQueue<T>; | ||
export declare function createCircularQueue<T>(): CircularQueue<T>; |
@@ -10,3 +10,3 @@ /** | ||
*/ | ||
export interface CircularQueue<T extends unknown> { | ||
export interface CircularQueue<T> { | ||
/** | ||
@@ -13,0 +13,0 @@ * Initialize the circular queue: Resize the array & reset the start / end index. |
{ | ||
"name": "@algorithm.ts/circular-queue", | ||
"version": "1.0.22", | ||
"version": "1.0.23", | ||
"description": "Circular queue in Typescript", | ||
@@ -42,3 +42,3 @@ "author": { | ||
}, | ||
"gitHead": "d4af2ac47f6a8d2a22eee8763be73b3770d4754d" | ||
"gitHead": "cc8576431cceb414f18f481788d5df198deeb464" | ||
} |
12202