Auto-commit 2026-04-29 16:31

This commit is contained in:
2026-04-29 16:31:27 -04:00
parent e8687bb6b2
commit 0495ee5bd2
19691 changed files with 3272886 additions and 138 deletions

14
node_modules/ret/dist/write-set-tokens.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import { Set } from './types';
/**
* Takes character code and returns character to be displayed in a set
* @param {number} charCode Character code of set element
* @returns {string} The string for the sets character
*/
export declare function setChar(charCode: number): string;
/**
* Writes the tokens for a set
* @param {Set} set The set to display
* @param {boolean} isNested Whether the token is nested inside another set token
* @returns {string} The tokens for the set
*/
export declare function writeSetTokens(set: Set, isNested?: boolean): string;