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
+48
View File
@@ -0,0 +1,48 @@
/**
* Test whether two arguments are equal.
*
* @param x The first argument to compare.
* @param y The second argument to compare.
* @return Whether two arguments are equal or not.
*/
export declare function equal_to<T>(x: T, y: T): boolean;
/**
* Test whether two arguments are not equal.
*
* @param x The first argument to compare.
* @param y The second argument to compare.
* @return Returns `true`, if two arguments are not equal, otherwise `false`.
*/
export declare function not_equal_to<T>(x: T, y: T): boolean;
/**
* Test whether *x* is less than *y*.
*
* @param x The first argument to compare.
* @param y The second argument to compare.
* @return Whether *x* is less than *y*.
*/
export declare function less<T>(x: T, y: T): boolean;
/**
* Test whether *x* is less than or equal to *y*.
*
* @param x The first argument to compare.
* @param y The second argument to compare.
* @return Whether *x* is less than or equal to *y*.
*/
export declare function less_equal<T>(x: T, y: T): boolean;
/**
* Test whether *x* is greater than *y*.
*
* @param x The first argument to compare.
* @param y The second argument to compare.
* @return Whether *x* is greater than *y*.
*/
export declare function greater<T>(x: T, y: T): boolean;
/**
* Test whether *x* is greater than or equal to *y*.
*
* @param x The first argument to compare.
* @param y The second argument to compare.
* @return Whether *x* is greater than or equal to *y*.
*/
export declare function greater_equal<T>(x: T, y: T): boolean;