- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
/**
|
|
* A generic priority queue implemented as an array-based binary heap.
|
|
* Adapted from https://stackoverflow.com/a/42919752/159388
|
|
*/
|
|
export declare class PriorityQueue<T = number> {
|
|
private readonly comparator;
|
|
private readonly heap;
|
|
/**
|
|
*
|
|
* @param comparator Returns true if the first argument should precede the
|
|
* second in the queue. Defaults to `(a, b) => a > b`
|
|
*/
|
|
constructor(comparator?: (a: T, b: T) => boolean);
|
|
/**
|
|
* @returns The number of items currently in the queue
|
|
*/
|
|
size(): number;
|
|
/**
|
|
* @returns True if there are no items in the queue, false otherwise
|
|
*/
|
|
isEmpty(): boolean;
|
|
/**
|
|
* Look at the front item that would be popped, without modifying the contents
|
|
* of the queue
|
|
* @returns The front item in the queue, or undefined if the queue is empty
|
|
*/
|
|
peek(): T | undefined;
|
|
/**
|
|
* Add the items to the queue
|
|
* @param values The items to add
|
|
* @returns The new size of the queue after adding the items
|
|
*/
|
|
push(...values: T[]): number;
|
|
/**
|
|
* Remove the front item in the queue and return it
|
|
* @returns The front item in the queue, or undefined if the queue is empty
|
|
*/
|
|
pop(): T | undefined;
|
|
/**
|
|
* Simultaneously remove the front item in the queue and add the provided
|
|
* item.
|
|
* @param value The item to add
|
|
* @returns The front item in the queue, or undefined if the queue is empty
|
|
*/
|
|
replace(value: T): T | undefined;
|
|
private greater;
|
|
private swap;
|
|
private siftUp;
|
|
private siftDown;
|
|
}
|