progress scene builder

This commit is contained in:
IDONTSUDO 2024-06-25 12:43:41 +03:00
parent 0a4eea19c5
commit 50d0c4c12b
64 changed files with 858 additions and 1315 deletions

View file

@ -32,6 +32,8 @@ declare global {
randRange(min: number, max: number): number;
isPositive(): boolean;
isNegative(): boolean;
isEven(): boolean;
isOdd(): boolean;
}
interface String {
@ -42,7 +44,7 @@ declare global {
isEqualMany(str: string[]): boolean;
hasPattern(pattern: string): boolean;
hasNoPattern(pattern: string): boolean;
divideByIndex(index: number): string[]
divideByIndex(index: number): string[];
}
interface Map<K, V> {