working rss feed to nostr publish

This commit is contained in:
2023-11-24 00:43:28 -05:00
parent 06edcb57ae
commit 88d2f9cfec
8396 changed files with 783105 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IClear {
/**
* Clear elements.
*/
clear(): void;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IClear.js.map
+11
View File
@@ -0,0 +1,11 @@
/**
* @packageDocumentation
* @module std.internal
*/
import { IPushFront } from "./IPushFront";
export interface IDeque<T> extends IPushFront<T> {
/**
* Erase the first element.
*/
pop_front(): void;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IDeque.js.map
+10
View File
@@ -0,0 +1,10 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IEmpty {
/**
* Test whether container is empty.
*/
empty(): boolean;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IEmpty.js.map
+18
View File
@@ -0,0 +1,18 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IFront<T> {
/**
* Get the first element.
*
* @return The first element.
*/
front(): T;
/**
* Change the first element.
*
* @param val The value to change.
*/
front(val: T): void;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IFront.js.map
+9
View File
@@ -0,0 +1,9 @@
/**
* @packageDocumentation
* @module std.internal
*/
import { IForwardIterator } from "../../../iterator/IForwardIterator";
import { IPointer } from "../../../functional/IPointer";
export interface IInsert<Iterator extends IForwardIterator<IPointer.ValueType<Iterator>, Iterator>> {
insert(it: Iterator, value: IPointer.ValueType<Iterator>): Iterator;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IInsert.js.map
+13
View File
@@ -0,0 +1,13 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IPush<T> {
/**
* Insert items at the end.
*
* @param items Items to insert.
* @return Number of elements in the container after insertion.
*/
push(...items: T[]): number;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IPush.js.map
+16
View File
@@ -0,0 +1,16 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IPushBack<T> {
/**
* Insert an element at the end.
*
* @param val Value to insert.
*/
push_back(val: T): void;
}
export declare namespace IPushBack {
type ContainerType<Range extends IPushBack<any>> = Range extends IPushBack<any> ? Range : unknown;
type IteratorType<Range extends IPushBack<any>> = Range extends IPushBack<infer Iterator> ? Iterator : unknown;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IPushBack.js.map
+12
View File
@@ -0,0 +1,12 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IPushFront<T> {
/**
* Insert an element at the first.
*
* @param val Value to insert.
*/
push_front(val: T): void;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IPushFront.js.map
+10
View File
@@ -0,0 +1,10 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface ISize {
/**
* Number of elements in the container.
*/
size(): number;
}
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=ISize.js.map