@algorithm.ts/queue
Advanced tools
Comparing version 3.0.0-alpha.1 to 3.0.0-alpha.2
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
class CircularQueue { | ||
@@ -6,0 +4,0 @@ _elements; |
@@ -81,3 +81,3 @@ import { ICollection, ICompare } from '@algorithm.ts/types'; | ||
*/ | ||
declare type IPriorityQueue<T> = IQueue<T>; | ||
type IPriorityQueue<T> = IQueue<T>; | ||
@@ -84,0 +84,0 @@ interface ICircularQueueProps { |
{ | ||
"name": "@algorithm.ts/queue", | ||
"version": "3.0.0-alpha.1", | ||
"version": "3.0.0-alpha.2", | ||
"description": "Typescript implementation of queues, such as priority queue and circular queue.", | ||
@@ -40,3 +40,3 @@ "author": { | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production rollup -c ../../rollup.config.js", | ||
"build": "cross-env NODE_ENV=production rollup -c ../../rollup.config.mjs", | ||
"prebuild": "rimraf lib/", | ||
@@ -47,5 +47,5 @@ "prepublishOnly": "cross-env ROLLUP_SHOULD_SOURCEMAP=false yarn build", | ||
"dependencies": { | ||
"@algorithm.ts/types": "^3.0.0-alpha.1" | ||
"@algorithm.ts/types": "^3.0.0-alpha.2" | ||
}, | ||
"gitHead": "8f9a0d0dfee15efc08c4165848123b118c13ce81" | ||
"gitHead": "3d718fba94605e2fd60a3056b502e2e1376ca0ed" | ||
} |
38316
840