@aidc-toolkit/app-extension 1.0.49 → 1.0.50
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/dist/{character-set-proxy-BOW94WCe.d.cts → character-set-proxy-CQCOcqR3.d.cts} +92 -92
- package/dist/{character-set-proxy-BOW94WCe.d.ts → character-set-proxy-CQCOcqR3.d.ts} +92 -92
- package/dist/chunk-46ONQV2V.js +1 -0
- package/dist/chunk-4BTJEN4N.js +1 -0
- package/dist/chunk-WLXID4YR.js +1 -0
- package/dist/{descriptor-D6tZH-vc.d.cts → descriptor-Df-lif4q.d.cts} +1 -1
- package/dist/{descriptor-D6tZH-vc.d.ts → descriptor-Df-lif4q.d.ts} +1 -1
- package/dist/generator/index.cjs +1 -1
- package/dist/generator/index.d.cts +2 -18
- package/dist/generator/index.d.ts +2 -18
- package/dist/generator/index.js +1 -1
- package/dist/gs1/index.cjs +1 -1
- package/dist/gs1/index.d.cts +106 -106
- package/dist/gs1/index.d.ts +106 -106
- package/dist/gs1/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +16 -31
- package/dist/index.d.ts +16 -31
- package/dist/index.js +1 -1
- package/package.json +5 -5
- package/src/app-extension-options.ts +61 -0
- package/src/app-extension.ts +22 -32
- package/src/app-helper-proxy.ts +21 -33
- package/src/generator/functions-generator.ts +14 -45
- package/src/generator/generator.ts +28 -18
- package/src/generator/locale-resources-generator.ts +79 -52
- package/src/gs1/character-set-proxy.ts +6 -7
- package/src/gs1/check-proxy.ts +8 -8
- package/src/gs1/gcp-length-proxy.ts +8 -8
- package/src/gs1/gtin-creator-proxy.ts +4 -4
- package/src/gs1/gtin-validator-proxy.ts +12 -12
- package/src/gs1/identifier-creator-proxy.ts +14 -14
- package/src/gs1/identifier-validator-proxy.ts +10 -10
- package/src/gs1/non-gtin-creator-proxy.ts +22 -23
- package/src/gs1/non-gtin-validator-proxy.ts +22 -23
- package/src/gs1/prefix-manager-proxy.ts +2 -2
- package/src/gs1/variable-measure-proxy.ts +4 -4
- package/src/gs1/verified-by-gs1-proxy.ts +5 -11
- package/src/index.ts +1 -0
- package/src/lib-proxy.ts +27 -43
- package/src/locale/en/locale-resources.ts +1 -1
- package/src/proxy.ts +12 -15
- package/src/streaming.ts +3 -3
- package/src/type.ts +3 -22
- package/src/utility/character-set-proxy.ts +17 -16
- package/src/utility/reg-exp-proxy.ts +2 -2
- package/src/utility/string-proxy.ts +2 -2
- package/src/utility/transformer-proxy.ts +6 -5
- package/src/version.ts +1 -1
- package/tsconfig-src.tsbuildinfo +1 -1
- package/dist/chunk-22IRLVWO.js +0 -1
- package/dist/chunk-MR63TJ3B.js +0 -1
- package/dist/chunk-TWX7TPRC.js +0 -1
|
@@ -3,13 +3,57 @@ import { StringValidation, StringValidator, CharacterSetValidator, Exclusion, Ch
|
|
|
3
3
|
import { Logger } from 'tslog';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
* Application extension options. Never instantiated; used only as extension point for custom application extension
|
|
7
|
+
* options to define types.
|
|
8
|
+
*/
|
|
9
|
+
interface AppExtensionOptions {
|
|
10
|
+
/**
|
|
11
|
+
* If true, errors are reported through the throw/catch mechanism.
|
|
12
|
+
*/
|
|
13
|
+
ThrowError: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Application error.
|
|
16
|
+
*/
|
|
17
|
+
ApplicationError: object;
|
|
18
|
+
/**
|
|
19
|
+
* Invocation context.
|
|
20
|
+
*/
|
|
21
|
+
InvocationContext: unknown;
|
|
22
|
+
/**
|
|
23
|
+
* Streaming context.
|
|
24
|
+
*/
|
|
25
|
+
StreamingContext: unknown;
|
|
26
|
+
/**
|
|
27
|
+
* Big integer representation.
|
|
28
|
+
*/
|
|
29
|
+
BigInteger: number | bigint;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Custom application extension options.
|
|
33
|
+
*/
|
|
34
|
+
interface CustomAppExtensionOptions extends AppExtensionOptions {
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
10
37
|
* If true, errors are reported through the throw/catch mechanism.
|
|
11
38
|
*/
|
|
12
|
-
type
|
|
39
|
+
type ThrowError = CustomAppExtensionOptions["ThrowError"];
|
|
40
|
+
/**
|
|
41
|
+
* Application error type.
|
|
42
|
+
*/
|
|
43
|
+
type ApplicationError = CustomAppExtensionOptions["ApplicationError"];
|
|
44
|
+
/**
|
|
45
|
+
* Invocation context type.
|
|
46
|
+
*/
|
|
47
|
+
type InvocationContext = CustomAppExtensionOptions["InvocationContext"];
|
|
48
|
+
/**
|
|
49
|
+
* Streaming context type.
|
|
50
|
+
*/
|
|
51
|
+
type StreamingContext = CustomAppExtensionOptions["StreamingContext"];
|
|
52
|
+
/**
|
|
53
|
+
* Big integer representation type.
|
|
54
|
+
*/
|
|
55
|
+
type BigInteger = CustomAppExtensionOptions["BigInteger"];
|
|
56
|
+
|
|
13
57
|
/**
|
|
14
58
|
* Sheet.
|
|
15
59
|
*/
|
|
@@ -69,14 +113,8 @@ type Matrix<T> = T[][];
|
|
|
69
113
|
*
|
|
70
114
|
* @template TResult
|
|
71
115
|
* Result type.
|
|
72
|
-
*
|
|
73
|
-
* @template ThrowError
|
|
74
|
-
* If true, errors are reported through the throw/catch mechanism.
|
|
75
|
-
*
|
|
76
|
-
* @template TError
|
|
77
|
-
* Error type.
|
|
78
116
|
*/
|
|
79
|
-
type SingletonResult<TResult
|
|
117
|
+
type SingletonResult<TResult> = ThrowError extends true ? TResult : TResult | ApplicationError;
|
|
80
118
|
/**
|
|
81
119
|
* Function matrix return, possibly including an error return in each element. If the application extension reports
|
|
82
120
|
* errors through the return value, the individual element result is the union of the return type and the error type;
|
|
@@ -84,19 +122,13 @@ type SingletonResult<TResult, ThrowError extends boolean, TError extends ErrorEx
|
|
|
84
122
|
*
|
|
85
123
|
* @template TResult
|
|
86
124
|
* Result type.
|
|
87
|
-
*
|
|
88
|
-
* @template ThrowError
|
|
89
|
-
* If true, errors are reported through the throw/catch mechanism.
|
|
90
|
-
*
|
|
91
|
-
* @template TError
|
|
92
|
-
* Error type.
|
|
93
125
|
*/
|
|
94
|
-
type MatrixResult<TResult
|
|
126
|
+
type MatrixResult<TResult> = Matrix<SingletonResult<TResult>>;
|
|
95
127
|
|
|
96
128
|
/**
|
|
97
129
|
* Streaming consumer callback, returned by application extension implementation.
|
|
98
130
|
*/
|
|
99
|
-
type StreamingConsumerCallback<TResult
|
|
131
|
+
type StreamingConsumerCallback<TResult> = (result: MatrixResult<TResult>) => void;
|
|
100
132
|
/**
|
|
101
133
|
* Streaming cancelled callback, passed to application extension implementation.
|
|
102
134
|
*/
|
|
@@ -104,23 +136,8 @@ type StreamingCancelledCallback = () => void;
|
|
|
104
136
|
|
|
105
137
|
/**
|
|
106
138
|
* Library proxy.
|
|
107
|
-
*
|
|
108
|
-
* @template ThrowError
|
|
109
|
-
* If true, errors are reported through the throw/catch mechanism.
|
|
110
|
-
*
|
|
111
|
-
* @template TError
|
|
112
|
-
* Error type.
|
|
113
|
-
*
|
|
114
|
-
* @template TInvocationContext
|
|
115
|
-
* Application-specific invocation context type.
|
|
116
|
-
*
|
|
117
|
-
* @template TStreamingInvocationContext
|
|
118
|
-
* Application-specific streaming invocation context type.
|
|
119
|
-
*
|
|
120
|
-
* @template TBigInt
|
|
121
|
-
* Type to which big integer is mapped.
|
|
122
139
|
*/
|
|
123
|
-
declare abstract class LibProxy
|
|
140
|
+
declare abstract class LibProxy {
|
|
124
141
|
#private;
|
|
125
142
|
/**
|
|
126
143
|
* Constructor.
|
|
@@ -128,11 +145,11 @@ declare abstract class LibProxy<ThrowError extends boolean, TError extends Error
|
|
|
128
145
|
* @param appExtension
|
|
129
146
|
* Application extension.
|
|
130
147
|
*/
|
|
131
|
-
constructor(appExtension: AppExtension
|
|
148
|
+
constructor(appExtension: AppExtension);
|
|
132
149
|
/**
|
|
133
150
|
* Get the application extension.
|
|
134
151
|
*/
|
|
135
|
-
get appExtension(): AppExtension
|
|
152
|
+
get appExtension(): AppExtension;
|
|
136
153
|
/**
|
|
137
154
|
* Map big integer to another type if necessary.
|
|
138
155
|
*
|
|
@@ -142,7 +159,7 @@ declare abstract class LibProxy<ThrowError extends boolean, TError extends Error
|
|
|
142
159
|
* @returns
|
|
143
160
|
* Mapped big integer value.
|
|
144
161
|
*/
|
|
145
|
-
mapBigInt(value: bigint): SingletonResult<
|
|
162
|
+
mapBigInt(value: bigint): SingletonResult<BigInteger>;
|
|
146
163
|
/**
|
|
147
164
|
* Call a singleton result function with error handling.
|
|
148
165
|
*
|
|
@@ -152,7 +169,7 @@ declare abstract class LibProxy<ThrowError extends boolean, TError extends Error
|
|
|
152
169
|
* @returns
|
|
153
170
|
* Callback return or error if errors are not thrown.
|
|
154
171
|
*/
|
|
155
|
-
singletonResult<TResult>(callback: () => SingletonResult<TResult
|
|
172
|
+
singletonResult<TResult>(callback: () => SingletonResult<TResult>): SingletonResult<TResult>;
|
|
156
173
|
/**
|
|
157
174
|
* Call a matrix result function with error handling.
|
|
158
175
|
*
|
|
@@ -165,7 +182,7 @@ declare abstract class LibProxy<ThrowError extends boolean, TError extends Error
|
|
|
165
182
|
* @returns
|
|
166
183
|
* Matrix of callback results and errors if errors are not thrown.
|
|
167
184
|
*/
|
|
168
|
-
protected matrixResult<TValue, TResult>(matrixValues: Matrix<TValue>, valueCallback: (value: TValue) => SingletonResult<TResult
|
|
185
|
+
protected matrixResult<TValue, TResult>(matrixValues: Matrix<TValue>, valueCallback: (value: TValue) => SingletonResult<TResult>): MatrixResult<TResult>;
|
|
169
186
|
/**
|
|
170
187
|
* Map a matrix of validate string results to boolean. If the string is empty, the result is true, indicating that
|
|
171
188
|
* there is no error.
|
|
@@ -176,7 +193,7 @@ declare abstract class LibProxy<ThrowError extends boolean, TError extends Error
|
|
|
176
193
|
* @returns
|
|
177
194
|
* Matrix of boolean values, true if corresponding string is empty.
|
|
178
195
|
*/
|
|
179
|
-
protected isValidString(matrixValidateResults: MatrixResult<string
|
|
196
|
+
protected isValidString(matrixValidateResults: MatrixResult<string>): Matrix<boolean>;
|
|
180
197
|
/**
|
|
181
198
|
* Set up a mapping and call a matrix result function with error handling.
|
|
182
199
|
*
|
|
@@ -192,7 +209,7 @@ declare abstract class LibProxy<ThrowError extends boolean, TError extends Error
|
|
|
192
209
|
* @returns
|
|
193
210
|
* Matrix of callback results and errors if errors are not thrown.
|
|
194
211
|
*/
|
|
195
|
-
protected setUpMatrixResult<TSetup, TValue, TResult>(setUpCallback: () => TSetup, matrixValues: Matrix<TValue>, valueCallback: (setup: TSetup, value: TValue) => SingletonResult<TResult
|
|
212
|
+
protected setUpMatrixResult<TSetup, TValue, TResult>(setUpCallback: () => TSetup, matrixValues: Matrix<TValue>, valueCallback: (setup: TSetup, value: TValue) => SingletonResult<TResult>): MatrixResult<TResult>;
|
|
196
213
|
/**
|
|
197
214
|
* Call an array result function with error handling and map to a matrix.
|
|
198
215
|
*
|
|
@@ -205,7 +222,7 @@ declare abstract class LibProxy<ThrowError extends boolean, TError extends Error
|
|
|
205
222
|
* @returns
|
|
206
223
|
* Matrix of callback results and errors if errors are not thrown.
|
|
207
224
|
*/
|
|
208
|
-
protected arrayResult<TValue, TResult>(matrixValues: Matrix<TValue>, callback: (value: TValue) => Array<SingletonResult<TResult
|
|
225
|
+
protected arrayResult<TValue, TResult>(matrixValues: Matrix<TValue>, callback: (value: TValue) => Array<SingletonResult<TResult>>): MatrixResult<TResult>;
|
|
209
226
|
/**
|
|
210
227
|
* Call a matrix result function with error handling and map a non-error result to an empty string and {@linkcode
|
|
211
228
|
* RangeError} to the string error message.
|
|
@@ -232,28 +249,13 @@ declare abstract class LibProxy<ThrowError extends boolean, TError extends Error
|
|
|
232
249
|
* @returns
|
|
233
250
|
* Matrix of callback results.
|
|
234
251
|
*/
|
|
235
|
-
protected iterableResult<TResult>(iterableCallback: () => Iterable<SingletonResult<TResult
|
|
252
|
+
protected iterableResult<TResult>(iterableCallback: () => Iterable<SingletonResult<TResult>>): MatrixResult<TResult>;
|
|
236
253
|
}
|
|
237
254
|
|
|
238
255
|
/**
|
|
239
256
|
* Application extension.
|
|
240
|
-
*
|
|
241
|
-
* @template ThrowError
|
|
242
|
-
* If true, errors are reported through the throw/catch mechanism.
|
|
243
|
-
*
|
|
244
|
-
* @template TError
|
|
245
|
-
* Error type.
|
|
246
|
-
*
|
|
247
|
-
* @template TInvocationContext
|
|
248
|
-
* Application-specific invocation context type.
|
|
249
|
-
*
|
|
250
|
-
* @template TStreamingInvocationContext
|
|
251
|
-
* Application-specific streaming invocation context type.
|
|
252
|
-
*
|
|
253
|
-
* @template TBigInt
|
|
254
|
-
* Type to which big integer is mapped.
|
|
255
257
|
*/
|
|
256
|
-
declare abstract class AppExtension
|
|
258
|
+
declare abstract class AppExtension {
|
|
257
259
|
#private;
|
|
258
260
|
/**
|
|
259
261
|
* Application name.
|
|
@@ -317,7 +319,7 @@ declare abstract class AppExtension<ThrowError extends boolean, TError extends E
|
|
|
317
319
|
* @returns
|
|
318
320
|
* Proxy instance.
|
|
319
321
|
*/
|
|
320
|
-
getProxy<T extends LibProxy
|
|
322
|
+
getProxy<T extends LibProxy>(ProxyConstructor: new (appExtension: AppExtension) => T): T;
|
|
321
323
|
/**
|
|
322
324
|
* Get the sheet address from an invocation context.
|
|
323
325
|
*
|
|
@@ -327,7 +329,7 @@ declare abstract class AppExtension<ThrowError extends boolean, TError extends E
|
|
|
327
329
|
* @returns
|
|
328
330
|
* Sheet address.
|
|
329
331
|
*/
|
|
330
|
-
abstract getSheetAddress(invocationContext:
|
|
332
|
+
abstract getSheetAddress(invocationContext: InvocationContext): Promisable<SheetAddress>;
|
|
331
333
|
/**
|
|
332
334
|
* Get a parameter range from an invocation context.
|
|
333
335
|
*
|
|
@@ -340,12 +342,12 @@ declare abstract class AppExtension<ThrowError extends boolean, TError extends E
|
|
|
340
342
|
* @returns
|
|
341
343
|
* Sheet range or null if parameter is not a range.
|
|
342
344
|
*/
|
|
343
|
-
abstract getParameterSheetRange(invocationContext:
|
|
345
|
+
abstract getParameterSheetRange(invocationContext: InvocationContext, parameterNumber: number): Promisable<SheetRange | null>;
|
|
344
346
|
/**
|
|
345
|
-
*
|
|
347
|
+
* Install a streaming function.
|
|
346
348
|
*
|
|
347
|
-
* @param
|
|
348
|
-
* Streaming
|
|
349
|
+
* @param streamingContext
|
|
350
|
+
* Streaming context.
|
|
349
351
|
*
|
|
350
352
|
* @param streamingCancelledCallback
|
|
351
353
|
* Streaming cancelled callback, called when streaming is cancelled.
|
|
@@ -353,7 +355,7 @@ declare abstract class AppExtension<ThrowError extends boolean, TError extends E
|
|
|
353
355
|
* @returns
|
|
354
356
|
* Streaming consumer callback, called when stream contents updated.
|
|
355
357
|
*/
|
|
356
|
-
abstract
|
|
358
|
+
abstract installStreaming<TResult>(streamingContext: StreamingContext, streamingCancelledCallback: StreamingCancelledCallback): StreamingConsumerCallback<TResult>;
|
|
357
359
|
/**
|
|
358
360
|
* Get a property stored within the active document.
|
|
359
361
|
*
|
|
@@ -401,7 +403,7 @@ declare abstract class AppExtension<ThrowError extends boolean, TError extends E
|
|
|
401
403
|
*/
|
|
402
404
|
validateSequenceCount(sequenceCount: number): void;
|
|
403
405
|
/**
|
|
404
|
-
* Map big integer to
|
|
406
|
+
* Map a big integer to its representation type.
|
|
405
407
|
*
|
|
406
408
|
* @param value
|
|
407
409
|
* Big integer value to map.
|
|
@@ -409,27 +411,25 @@ declare abstract class AppExtension<ThrowError extends boolean, TError extends E
|
|
|
409
411
|
* @returns
|
|
410
412
|
* Mapped big integer value.
|
|
411
413
|
*/
|
|
412
|
-
abstract mapBigInt(value: bigint): SingletonResult<
|
|
414
|
+
abstract mapBigInt(value: bigint): SingletonResult<BigInteger>;
|
|
413
415
|
/**
|
|
414
416
|
* Map hyperlink results to a form suitable for the application.
|
|
415
417
|
*
|
|
416
|
-
* @param invocationContext
|
|
417
|
-
* Invocation context.
|
|
418
|
-
*
|
|
419
418
|
* @param matrixHyperlinkResults
|
|
420
419
|
* Matrix of hyperlink results from function call.
|
|
421
420
|
*
|
|
422
421
|
* @returns
|
|
423
422
|
* Matrix of results in a form suitable for the application.
|
|
424
423
|
*/
|
|
425
|
-
abstract mapHyperlinkResults(
|
|
424
|
+
abstract mapHyperlinkResults(matrixHyperlinkResults: MatrixResult<Hyperlink>): Promisable<MatrixResult<unknown>>;
|
|
426
425
|
/**
|
|
427
426
|
* Map a range error (thrown by the library) to an application-specific error. If errors are reported through the
|
|
428
427
|
* throw/catch mechanism, the implementation may return the range error unmodified if that is supported.
|
|
429
428
|
*
|
|
430
429
|
* @param rangeError
|
|
430
|
+
* Range error.
|
|
431
431
|
*/
|
|
432
|
-
abstract mapRangeError(rangeError: RangeError):
|
|
432
|
+
abstract mapRangeError(rangeError: RangeError): ApplicationError;
|
|
433
433
|
/**
|
|
434
434
|
* Handle an error with a message; called when an exception occurs outside the control of the AIDC Toolkit library.
|
|
435
435
|
* Implementation must not return, most likely by throwing the message wrapped in an error type.
|
|
@@ -440,34 +440,34 @@ declare abstract class AppExtension<ThrowError extends boolean, TError extends E
|
|
|
440
440
|
abstract handleError(message: string): never;
|
|
441
441
|
}
|
|
442
442
|
|
|
443
|
-
declare abstract class StringProxy
|
|
443
|
+
declare abstract class StringProxy extends LibProxy {
|
|
444
444
|
protected validateString<TStringValidation extends StringValidation>(validator: StringValidator<TStringValidation>, matrixSs: Matrix<string>, validation?: TStringValidation): Matrix<string>;
|
|
445
445
|
}
|
|
446
446
|
|
|
447
|
-
declare abstract class CharacterSetValidatorProxy
|
|
447
|
+
declare abstract class CharacterSetValidatorProxy extends StringProxy {
|
|
448
448
|
#private;
|
|
449
|
-
constructor(appExtension: AppExtension
|
|
449
|
+
constructor(appExtension: AppExtension, characterSetValidator: CharacterSetValidator);
|
|
450
450
|
validate(matrixSs: Matrix<string>, exclusion: Nullishable<Exclusion>): Matrix<string>;
|
|
451
451
|
isValid(matrixSs: Matrix<string>, exclusion: Nullishable<Exclusion>): Matrix<boolean>;
|
|
452
452
|
}
|
|
453
|
-
declare abstract class CharacterSetCreatorProxy
|
|
453
|
+
declare abstract class CharacterSetCreatorProxy extends CharacterSetValidatorProxy {
|
|
454
454
|
#private;
|
|
455
|
-
constructor(appExtension: AppExtension
|
|
456
|
-
create(length: number, matrixValues: Matrix<number | bigint>, exclusion: Nullishable<Exclusion>, tweak: Nullishable<number | bigint>): MatrixResult<string
|
|
457
|
-
createSequence(length: number, startValue: number, count: number, exclusion: Nullishable<Exclusion>, tweak: Nullishable<number | bigint>): MatrixResult<string
|
|
458
|
-
valueFor(matrixSs: Matrix<string>, exclusion: Nullishable<Exclusion>, tweak: Nullishable<number | bigint>): MatrixResult<
|
|
455
|
+
constructor(appExtension: AppExtension, characterSetCreator: CharacterSetCreator);
|
|
456
|
+
create(length: number, matrixValues: Matrix<number | bigint>, exclusion: Nullishable<Exclusion>, tweak: Nullishable<number | bigint>): MatrixResult<string>;
|
|
457
|
+
createSequence(length: number, startValue: number, count: number, exclusion: Nullishable<Exclusion>, tweak: Nullishable<number | bigint>): MatrixResult<string>;
|
|
458
|
+
valueFor(matrixSs: Matrix<string>, exclusion: Nullishable<Exclusion>, tweak: Nullishable<number | bigint>): MatrixResult<BigInteger>;
|
|
459
459
|
}
|
|
460
|
-
declare class NumericProxy
|
|
461
|
-
constructor(appExtension: AppExtension
|
|
460
|
+
declare class NumericProxy extends CharacterSetCreatorProxy {
|
|
461
|
+
constructor(appExtension: AppExtension);
|
|
462
462
|
}
|
|
463
|
-
declare class HexadecimalProxy
|
|
464
|
-
constructor(appExtension: AppExtension
|
|
463
|
+
declare class HexadecimalProxy extends CharacterSetCreatorProxy {
|
|
464
|
+
constructor(appExtension: AppExtension);
|
|
465
465
|
}
|
|
466
|
-
declare class AlphabeticProxy
|
|
467
|
-
constructor(appExtension: AppExtension
|
|
466
|
+
declare class AlphabeticProxy extends CharacterSetCreatorProxy {
|
|
467
|
+
constructor(appExtension: AppExtension);
|
|
468
468
|
}
|
|
469
|
-
declare class AlphanumericProxy
|
|
470
|
-
constructor(appExtension: AppExtension
|
|
469
|
+
declare class AlphanumericProxy extends CharacterSetCreatorProxy {
|
|
470
|
+
constructor(appExtension: AppExtension);
|
|
471
471
|
}
|
|
472
472
|
|
|
473
|
-
export { type Address as A,
|
|
473
|
+
export { type Address as A, type BigInteger as B, CharacterSetCreatorProxy as C, HexadecimalProxy as H, type InvocationContext as I, LibProxy as L, type Matrix as M, NumericProxy as N, type Range as R, type StreamingContext as S, type ThrowError as T, type MatrixResult as a, StringProxy as b, AlphabeticProxy as c, AlphanumericProxy as d, AppExtension as e, type AppExtensionOptions as f, type ApplicationError as g, CharacterSetValidatorProxy as h, type CustomAppExtensionOptions as i, type Sheet as j, type SheetAddress as k, type SheetRange as l, type SingletonResult as m, type StreamingCancelledCallback as n, type StreamingConsumerCallback as o };
|