forked from rowsncolumns/fast-formula-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
298 lines (238 loc) · 7.23 KB
/
index.d.ts
File metadata and controls
298 lines (238 loc) · 7.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/**
* TypeScript definitions for ts-formula-parser
* A fast and reliable Excel formula parser with full ESM support
*/
// ======================
// Core Types
// ======================
/** Date configuration for null date handling */
export interface NullDate {
year: number;
month: number;
day: number;
}
/** Cell reference (1-based indexing) */
export interface CellRef {
row: number;
col: number;
sheet?: string | number;
}
/** Range reference (1-based indexing) */
export interface RangeRef {
from: CellRef;
to: CellRef;
sheet?: string | number;
}
/** Union reference - combination of multiple references */
export interface UnionRef {
refs: (CellRef | RangeRef)[];
}
/** Parser position context */
export interface ParserPosition {
row: number;
col: number;
sheet?: string | number;
}
// ======================
// Formula Types
// ======================
/** Valid function argument types */
export type FunctionArg =
| null
| undefined
| number
| string
| boolean
| CellRef
| RangeRef
| UnionRef
| Array<Array<number | string | boolean | null>>;
/** Valid function result types */
export type FunctionResult =
| number
| string
| boolean
| CellRef
| RangeRef
| UnionRef
| Array<Array<number | string | boolean | null>>;
// ======================
// Formula Error Class
// ======================
/** Formula error class */
declare class FormulaErrorClass extends Error {
readonly _error: string;
readonly details?: any;
constructor(error: string, msg?: string, details?: any);
get error(): string;
get name(): string;
toString(): string;
// Static error instances
static readonly NA: FormulaErrorClass;
static readonly NAME: FormulaErrorClass;
static readonly NULL: FormulaErrorClass;
static readonly NUM: FormulaErrorClass;
static readonly REF: FormulaErrorClass;
static readonly VALUE: FormulaErrorClass;
static readonly DIV0: FormulaErrorClass;
// Static error factory methods
static ARG_MISSING(args: string[]): FormulaErrorClass;
static ERROR(msg: string, details?: any): FormulaErrorClass;
static NOT_IMPLEMENTED(functionName: string): FormulaErrorClass;
// Error map
static readonly errorMap: Map<string, FormulaErrorClass>;
}
// ======================
// Formula Helpers Types
// ======================
/** Helper types enumeration */
declare const TypesEnum: {
readonly NUMBER: 0;
readonly ARRAY: 1;
readonly BOOLEAN: 2;
readonly STRING: 3;
readonly RANGE_REF: 4;
readonly CELL_REF: 5;
readonly COLLECTIONS: 6;
readonly NUMBER_NO_BOOLEAN: 10;
};
export type TypeValue = typeof TypesEnum[keyof typeof TypesEnum];
/** Formula helpers utility class */
declare class FormulaHelpersClass {
readonly Types: typeof TypesEnum;
constructor();
// Type checking and conversion
accept(arg: any, type: TypeValue | TypeValue[]): any;
checkFunctionResult(result: any): any;
// Array utilities
flattenParams(params: any[]): any[];
// Type detection
getType(value: any): TypeValue;
isNumber(value: any): boolean;
isBoolean(value: any): boolean;
isString(value: any): string;
isArray(value: any): boolean;
isCellRef(value: any): boolean;
isRangeRef(value: any): boolean;
// Value conversion
toNumber(value: any): number;
toString(value: any): string;
toBoolean(value: any): boolean;
// Array operations
transpose(array: any[][]): any[][];
// Static utilities
static accept(arg: any, type: TypeValue | TypeValue[]): any;
static flattenParams(params: any[]): any[];
}
// ======================
// Parser Configuration
// ======================
export interface FormulaParserConfig {
/** Custom function definitions */
functions?: Record<string, (...args: any[]) => any>;
/** Custom functions that need parser context */
functionsNeedContext?: Record<string, (context: ParserContext, ...args: any[]) => any>;
/** Variable resolver for defined names */
onVariable?: (name: string, sheet?: string | number, position?: ParserPosition) => CellRef | RangeRef | null | undefined;
/** Cell value provider */
onCell?: (ref: CellRef) => any;
/** Range value provider */
onRange?: (ref: RangeRef) => any[][];
/** Null date configuration */
nullDate?: NullDate;
}
/** Parser context provided to context-aware functions */
export interface ParserContext {
position: ParserPosition;
parser: FormulaParserClass;
}
// ======================
// Main Parser Class
// ======================
declare class FormulaParserClass {
// Static constants
static readonly MAX_ROW: number;
static readonly MAX_COLUMN: number;
static readonly SSF: any;
static readonly DepParser: typeof DepParserClass;
static readonly FormulaError: typeof FormulaErrorClass;
static readonly FormulaHelpers: typeof FormulaHelpersClass;
// Instance properties
readonly config: FormulaParserConfig;
readonly logs: string[];
constructor(config?: FormulaParserConfig, isTest?: boolean);
/** Get all available tokens */
static get allTokens(): string[];
/** Parse formula synchronously */
parse(
inputText: string,
position?: ParserPosition,
allowReturnArray?: boolean
): FunctionResult | any;
/** Parse formula asynchronously */
parseAsync(
inputText: string,
position?: ParserPosition,
allowReturnArray?: boolean
): Promise<FunctionResult | any>;
/** Call a function by name */
callFunction(name: string, args: FunctionArg[]): FunctionResult | any;
/** Call a function asynchronously by name */
callFunctionAsync(
name: string,
args: FunctionArg[]
): Promise<FunctionResult | any>;
/** Get list of supported function names */
supportedFunctions(): string[];
/** Check if a function is supported */
isFunctionSupported(name: string): boolean;
}
// ======================
// Dependency Parser
// ======================
export interface DepParserConfig {
/** Variable resolver for dependency analysis */
onVariable?: (name: string, sheet?: string | number, position?: ParserPosition) => CellRef | RangeRef | null | undefined;
}
declare class DepParserClass {
readonly data: any[];
readonly functions: Record<string, any>;
constructor(config?: DepParserConfig);
/** Parse formula and extract dependencies */
parse(
inputText: string,
position?: ParserPosition
): (CellRef | RangeRef)[];
}
// ======================
// SSF (Spreadsheet Formatting)
// ======================
declare const SSFObject: {
format(fmt: string, val: number | Date, opts?: any): string;
parse_date_code(v: number, opts?: any, b2?: any): Date;
// Additional SSF methods would be defined here
[key: string]: any;
};
// ======================
// Constants
// ======================
declare const MAX_ROW_CONST: number;
declare const MAX_COLUMN_CONST: number;
// ======================
// Default Export
// ======================
declare const DefaultFormulaParser: typeof FormulaParserClass;
export default DefaultFormulaParser;
// ======================
// Named Exports
// ======================
export {
FormulaParserClass as FormulaParser,
DepParserClass as DepParser,
FormulaErrorClass as FormulaError,
FormulaHelpersClass as FormulaHelpers,
TypesEnum as Types,
SSFObject as SSF,
MAX_ROW_CONST as MAX_ROW,
MAX_COLUMN_CONST as MAX_COLUMN
};