@magic-xpa/mscorelib 4.1201.0 → 4.1202.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/fesm2022/magic-xpa-mscorelib.mjs.map +1 -1
- package/package.json +4 -4
- package/types/magic-xpa-mscorelib.d.ts +367 -0
- package/index.d.ts +0 -34
- package/src/ApplicationException.d.ts +0 -5
- package/src/ArrayEnumerator.d.ts +0 -11
- package/src/BitArray.d.ts +0 -7
- package/src/Char.d.ts +0 -4
- package/src/CultureInfo.d.ts +0 -3
- package/src/DateTime.d.ts +0 -26
- package/src/Debug.d.ts +0 -4
- package/src/Dictionary.d.ts +0 -11
- package/src/Encoding.d.ts +0 -16
- package/src/Exception.d.ts +0 -11
- package/src/HashTable.d.ts +0 -28
- package/src/IComparable.d.ts +0 -3
- package/src/ISO_8859_1_Encoding.d.ts +0 -7
- package/src/Int32.d.ts +0 -4
- package/src/Int64.d.ts +0 -3
- package/src/List.d.ts +0 -19
- package/src/NChar.d.ts +0 -8
- package/src/NNumber.d.ts +0 -9
- package/src/NString.d.ts +0 -23
- package/src/NotImplementedException.d.ts +0 -4
- package/src/NumberFormatInfo.d.ts +0 -5
- package/src/RefParam.d.ts +0 -4
- package/src/Stack.d.ts +0 -11
- package/src/StackFrame.d.ts +0 -5
- package/src/StackTrace.d.ts +0 -5
- package/src/StringBuilder.d.ts +0 -25
- package/src/StringUtils.d.ts +0 -64
- package/src/Thread.d.ts +0 -7
- package/src/Utils.d.ts +0 -2
- package/src/WebException.d.ts +0 -4
- package/src/XmlConvert.d.ts +0 -3
package/src/StringBuilder.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
export declare class StringBuilder {
|
|
2
|
-
private part;
|
|
3
|
-
constructor(length?: number);
|
|
4
|
-
constructor(value?: string, length?: number);
|
|
5
|
-
Append(num: number, numberOfCharacters?: number): StringBuilder;
|
|
6
|
-
Append(text: string): StringBuilder;
|
|
7
|
-
Append(text: string, numberOfCharacters: number): StringBuilder;
|
|
8
|
-
Append(text: string, startIndex: number, charCount: number): StringBuilder;
|
|
9
|
-
private AppendString;
|
|
10
|
-
private AppendNumber;
|
|
11
|
-
AppendLine(text?: string): void;
|
|
12
|
-
AppendFormat(format: string, arg0: any): StringBuilder;
|
|
13
|
-
AppendFormat(format: string, arg0: any, arg1: any): StringBuilder;
|
|
14
|
-
AppendFormat(format: string, arg0: any, arg1: any, arg2: any): StringBuilder;
|
|
15
|
-
ToString(): string;
|
|
16
|
-
ToString(startIndex: number, length: number): string;
|
|
17
|
-
get Length(): number;
|
|
18
|
-
get_Item(index: number): string;
|
|
19
|
-
set_Item(index: number, value: string): void;
|
|
20
|
-
Insert(index: number, value: string): StringBuilder;
|
|
21
|
-
Remove(startIndex: number, length: number): StringBuilder;
|
|
22
|
-
Replace(oldValue: string, newValue: string): StringBuilder;
|
|
23
|
-
Replace(oldValue: string, newValue: string, startIndex: number, count: number): StringBuilder;
|
|
24
|
-
toString(): string;
|
|
25
|
-
}
|
package/src/StringUtils.d.ts
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
export declare const $EOF = 0;
|
|
2
|
-
export declare const $TAB = 9;
|
|
3
|
-
export declare const $LF = 10;
|
|
4
|
-
export declare const $VTAB = 11;
|
|
5
|
-
export declare const $FF = 12;
|
|
6
|
-
export declare const $CR = 13;
|
|
7
|
-
export declare const $SPACE = 32;
|
|
8
|
-
export declare const $BANG = 33;
|
|
9
|
-
export declare const $DQ = 34;
|
|
10
|
-
export declare const $HASH = 35;
|
|
11
|
-
export declare const $$ = 36;
|
|
12
|
-
export declare const $PERCENT = 37;
|
|
13
|
-
export declare const $AMPERSAND = 38;
|
|
14
|
-
export declare const $SQ = 39;
|
|
15
|
-
export declare const $LPAREN = 40;
|
|
16
|
-
export declare const $RPAREN = 41;
|
|
17
|
-
export declare const $STAR = 42;
|
|
18
|
-
export declare const $PLUS = 43;
|
|
19
|
-
export declare const $COMMA = 44;
|
|
20
|
-
export declare const $MINUS = 45;
|
|
21
|
-
export declare const $PERIOD = 46;
|
|
22
|
-
export declare const $SLASH = 47;
|
|
23
|
-
export declare const $COLON = 58;
|
|
24
|
-
export declare const $SEMICOLON = 59;
|
|
25
|
-
export declare const $LT = 60;
|
|
26
|
-
export declare const $EQ = 61;
|
|
27
|
-
export declare const $GT = 62;
|
|
28
|
-
export declare const $QUESTION = 63;
|
|
29
|
-
export declare const $0 = 48;
|
|
30
|
-
export declare const $9 = 57;
|
|
31
|
-
export declare const $A = 65;
|
|
32
|
-
export declare const $E = 69;
|
|
33
|
-
export declare const $F = 70;
|
|
34
|
-
export declare const $X = 88;
|
|
35
|
-
export declare const $Z = 90;
|
|
36
|
-
export declare const $LBRACKET = 91;
|
|
37
|
-
export declare const $BACKSLASH = 92;
|
|
38
|
-
export declare const $RBRACKET = 93;
|
|
39
|
-
export declare const $CARET = 94;
|
|
40
|
-
export declare const $_ = 95;
|
|
41
|
-
export declare const $a = 97;
|
|
42
|
-
export declare const $e = 101;
|
|
43
|
-
export declare const $f = 102;
|
|
44
|
-
export declare const $n = 110;
|
|
45
|
-
export declare const $r = 114;
|
|
46
|
-
export declare const $t = 116;
|
|
47
|
-
export declare const $u = 117;
|
|
48
|
-
export declare const $v = 118;
|
|
49
|
-
export declare const $x = 120;
|
|
50
|
-
export declare const $z = 122;
|
|
51
|
-
export declare const $LBRACE = 123;
|
|
52
|
-
export declare const $BAR = 124;
|
|
53
|
-
export declare const $RBRACE = 125;
|
|
54
|
-
export declare const $NBSP = 160;
|
|
55
|
-
export declare const $PIPE = 124;
|
|
56
|
-
export declare const $TILDA = 126;
|
|
57
|
-
export declare const $AT = 64;
|
|
58
|
-
export declare const $BT = 96;
|
|
59
|
-
export declare function isWhitespace(code: number): boolean;
|
|
60
|
-
export declare function isDigit(code: number): boolean;
|
|
61
|
-
export declare function isAsciiLetter(code: number): boolean;
|
|
62
|
-
export declare function isAsciiHexDigit(code: number): boolean;
|
|
63
|
-
export declare function isLowerCase(str: string): boolean;
|
|
64
|
-
export declare function isUpperCase(str: string): boolean;
|
package/src/Thread.d.ts
DELETED
package/src/Utils.d.ts
DELETED
package/src/WebException.d.ts
DELETED
package/src/XmlConvert.d.ts
DELETED