@depup/webpack-sources 3.3.4-depup.0 → 3.6.0-depup.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 +2 -2
- package/changes.json +1 -1
- package/lib/CachedSource.js +257 -63
- package/lib/CompatSource.js +42 -1
- package/lib/ConcatSource.js +100 -28
- package/lib/OriginalSource.js +111 -45
- package/lib/PrefixSource.js +60 -11
- package/lib/RawSource.js +85 -29
- package/lib/ReplaceSource.js +269 -73
- package/lib/SizeOnlySource.js +10 -1
- package/lib/Source.js +39 -0
- package/lib/SourceMapSource.js +92 -10
- package/lib/helpers/createMappingsSerializer.js +307 -54
- package/lib/helpers/getFromStreamChunks.js +165 -73
- package/lib/helpers/getGeneratedSourceInfo.js +7 -4
- package/lib/helpers/readMappings.js +6 -3
- package/lib/helpers/scopes.js +438 -0
- package/lib/helpers/splitIntoLines.js +10 -9
- package/lib/helpers/splitIntoPotentialTokens.js +99 -26
- package/lib/helpers/streamAndGetSourceAndMap.js +61 -22
- package/lib/helpers/streamChunks.js +3 -2
- package/lib/helpers/streamChunksOfCombinedSourceMap.js +7 -3
- package/lib/helpers/streamChunksOfRawSource.js +23 -15
- package/lib/helpers/streamChunksOfSourceMap.js +50 -42
- package/lib/index.js +3 -0
- package/package.json +34 -23
- package/types/CachedSource.d.ts +192 -0
- package/types/CompatSource.d.ts +87 -0
- package/types/ConcatSource.d.ts +75 -0
- package/types/OriginalSource.d.ts +87 -0
- package/types/PrefixSource.d.ts +59 -0
- package/types/RawSource.d.ts +75 -0
- package/types/ReplaceSource.d.ts +107 -0
- package/types/SizeOnlySource.d.ts +24 -0
- package/types/Source.d.ts +189 -0
- package/types/SourceMapSource.d.ts +136 -0
- package/types/helpers/createMappingsSerializer.d.ts +60 -0
- package/types/helpers/getFromStreamChunks.d.ts +16 -0
- package/types/helpers/getGeneratedSourceInfo.d.ts +31 -0
- package/types/helpers/getName.d.ts +15 -0
- package/types/helpers/getSource.d.ts +15 -0
- package/types/helpers/readMappings.d.ts +19 -0
- package/types/helpers/scopes.d.ts +119 -0
- package/types/helpers/splitIntoLines.d.ts +6 -0
- package/types/helpers/splitIntoPotentialTokens.d.ts +37 -0
- package/types/helpers/streamAndGetSourceAndMap.d.ts +39 -0
- package/types/helpers/streamChunks.d.ts +56 -0
- package/types/helpers/streamChunksOfCombinedSourceMap.d.ts +42 -0
- package/types/helpers/streamChunksOfRawSource.d.ts +16 -0
- package/types/helpers/streamChunksOfSourceMap.d.ts +19 -0
- package/types/helpers/stringBufferUtils.d.ts +55 -0
- package/types/index.d.ts +50 -0
- package/types.d.ts +42 -439
package/types.d.ts
CHANGED
|
@@ -1,438 +1,52 @@
|
|
|
1
1
|
/*
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
2
|
+
* Public type entry point of `webpack-sources`.
|
|
3
|
+
*
|
|
4
|
+
* The declarations under `types/` are generated from the JSDoc in `lib/` by
|
|
5
|
+
* `npm run build:types`; don't edit them by hand. This file re-exports them in
|
|
6
|
+
* the package's public shape: every class is available as both a value and a
|
|
7
|
+
* type, next to the public helper types.
|
|
8
|
+
*
|
|
9
|
+
* TODO: remove this file in the next major release and point `types` in
|
|
10
|
+
* `package.json` at the generated `types/index.d.ts`. That requires the
|
|
11
|
+
* exports in `lib/index.js` to be typed so the classes are exported as types
|
|
12
|
+
* too (e.g. `Source` usable in `let source: Source`), which is a breaking
|
|
13
|
+
* change for the shape of the public types.
|
|
5
14
|
*/
|
|
6
15
|
|
|
7
|
-
import
|
|
16
|
+
import CachedSource = require("./types/CachedSource");
|
|
17
|
+
import CompatSource = require("./types/CompatSource");
|
|
18
|
+
import ConcatSource = require("./types/ConcatSource");
|
|
19
|
+
import OriginalSource = require("./types/OriginalSource");
|
|
20
|
+
import PrefixSource = require("./types/PrefixSource");
|
|
21
|
+
import RawSource = require("./types/RawSource");
|
|
22
|
+
import ReplaceSource = require("./types/ReplaceSource");
|
|
23
|
+
import SizeOnlySource = require("./types/SizeOnlySource");
|
|
24
|
+
import Source = require("./types/Source");
|
|
25
|
+
import SourceMapSource = require("./types/SourceMapSource");
|
|
26
|
+
import GetGeneratedSourceInfo = require("./types/helpers/getGeneratedSourceInfo");
|
|
27
|
+
import Scopes = require("./types/helpers/scopes");
|
|
28
|
+
import StreamChunks = require("./types/helpers/streamChunks");
|
|
29
|
+
import StringBufferUtils = require("./types/helpers/stringBufferUtils");
|
|
8
30
|
|
|
9
|
-
declare interface BufferEntry {
|
|
10
|
-
map?: null | RawSourceMap;
|
|
11
|
-
bufferedMap?: null | BufferedMap;
|
|
12
|
-
}
|
|
13
|
-
declare interface BufferedMap {
|
|
14
|
-
/**
|
|
15
|
-
* version
|
|
16
|
-
*/
|
|
17
|
-
version: number;
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* sources
|
|
21
|
-
*/
|
|
22
|
-
sources: string[];
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* name
|
|
26
|
-
*/
|
|
27
|
-
names: string[];
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* source root
|
|
31
|
-
*/
|
|
32
|
-
sourceRoot?: string;
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* sources content
|
|
36
|
-
*/
|
|
37
|
-
sourcesContent?: ("" | Buffer)[];
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* mappings
|
|
41
|
-
*/
|
|
42
|
-
mappings?: Buffer;
|
|
43
|
-
|
|
44
|
-
/**
|
|
45
|
-
* file
|
|
46
|
-
*/
|
|
47
|
-
file: string;
|
|
48
|
-
}
|
|
49
|
-
declare interface CachedData {
|
|
50
|
-
/**
|
|
51
|
-
* source
|
|
52
|
-
*/
|
|
53
|
-
source?: boolean;
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* buffer
|
|
57
|
-
*/
|
|
58
|
-
buffer: Buffer;
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* size
|
|
62
|
-
*/
|
|
63
|
-
size?: number;
|
|
64
|
-
|
|
65
|
-
/**
|
|
66
|
-
* maps
|
|
67
|
-
*/
|
|
68
|
-
maps: Map<string, BufferEntry>;
|
|
69
|
-
|
|
70
|
-
/**
|
|
71
|
-
* hash
|
|
72
|
-
*/
|
|
73
|
-
hash?: (string | Buffer)[];
|
|
74
|
-
}
|
|
75
|
-
declare class CachedSource extends Source {
|
|
76
|
-
constructor(source: Source | (() => Source), cachedData?: CachedData);
|
|
77
|
-
getCachedData(): CachedData;
|
|
78
|
-
originalLazy(): Source | (() => Source);
|
|
79
|
-
original(): Source;
|
|
80
|
-
streamChunks(
|
|
81
|
-
options: StreamChunksOptions,
|
|
82
|
-
onChunk: (
|
|
83
|
-
chunk: undefined | string,
|
|
84
|
-
generatedLine: number,
|
|
85
|
-
generatedColumn: number,
|
|
86
|
-
sourceIndex: number,
|
|
87
|
-
originalLine: number,
|
|
88
|
-
originalColumn: number,
|
|
89
|
-
nameIndex: number,
|
|
90
|
-
) => void,
|
|
91
|
-
onSource: (
|
|
92
|
-
sourceIndex: number,
|
|
93
|
-
source: null | string,
|
|
94
|
-
sourceContent?: string,
|
|
95
|
-
) => void,
|
|
96
|
-
onName: (nameIndex: number, name: string) => void,
|
|
97
|
-
): GeneratedSourceInfo;
|
|
98
|
-
}
|
|
99
|
-
declare class CompatSource extends Source {
|
|
100
|
-
constructor(sourceLike: SourceLike);
|
|
101
|
-
static from(sourceLike: SourceLike): Source;
|
|
102
|
-
}
|
|
103
|
-
declare class ConcatSource extends Source {
|
|
104
|
-
constructor(...args: ConcatSourceChild[]);
|
|
105
|
-
getChildren(): Source[];
|
|
106
|
-
add(item: ConcatSourceChild): void;
|
|
107
|
-
addAllSkipOptimizing(items: ConcatSourceChild[]): void;
|
|
108
|
-
streamChunks(
|
|
109
|
-
options: StreamChunksOptions,
|
|
110
|
-
onChunk: (
|
|
111
|
-
chunk: undefined | string,
|
|
112
|
-
generatedLine: number,
|
|
113
|
-
generatedColumn: number,
|
|
114
|
-
sourceIndex: number,
|
|
115
|
-
originalLine: number,
|
|
116
|
-
originalColumn: number,
|
|
117
|
-
nameIndex: number,
|
|
118
|
-
) => void,
|
|
119
|
-
onSource: (
|
|
120
|
-
sourceIndex: number,
|
|
121
|
-
source: null | string,
|
|
122
|
-
sourceContent?: string,
|
|
123
|
-
) => void,
|
|
124
|
-
onName: (nameIndex: number, name: string) => void,
|
|
125
|
-
): GeneratedSourceInfo;
|
|
126
|
-
}
|
|
127
|
-
type ConcatSourceChild = string | Source | SourceLike;
|
|
128
|
-
declare interface GeneratedSourceInfo {
|
|
129
|
-
/**
|
|
130
|
-
* generated line
|
|
131
|
-
*/
|
|
132
|
-
generatedLine?: number;
|
|
133
|
-
|
|
134
|
-
/**
|
|
135
|
-
* generated column
|
|
136
|
-
*/
|
|
137
|
-
generatedColumn?: number;
|
|
138
|
-
|
|
139
|
-
/**
|
|
140
|
-
* source
|
|
141
|
-
*/
|
|
142
|
-
source?: string;
|
|
143
|
-
}
|
|
144
|
-
declare interface HashLike {
|
|
145
|
-
/**
|
|
146
|
-
* make hash update
|
|
147
|
-
*/
|
|
148
|
-
update: (data: string | Buffer, inputEncoding?: string) => HashLike;
|
|
149
|
-
|
|
150
|
-
/**
|
|
151
|
-
* get hash digest
|
|
152
|
-
*/
|
|
153
|
-
digest: (encoding?: string) => string | Buffer;
|
|
154
|
-
}
|
|
155
|
-
declare interface MapOptions {
|
|
156
|
-
/**
|
|
157
|
-
* need columns?
|
|
158
|
-
*/
|
|
159
|
-
columns?: boolean;
|
|
160
|
-
|
|
161
|
-
/**
|
|
162
|
-
* is module
|
|
163
|
-
*/
|
|
164
|
-
module?: boolean;
|
|
165
|
-
}
|
|
166
|
-
declare class OriginalSource extends Source {
|
|
167
|
-
constructor(value: string | Buffer, name: string);
|
|
168
|
-
getName(): string;
|
|
169
|
-
streamChunks(
|
|
170
|
-
options: StreamChunksOptions,
|
|
171
|
-
onChunk: (
|
|
172
|
-
chunk: undefined | string,
|
|
173
|
-
generatedLine: number,
|
|
174
|
-
generatedColumn: number,
|
|
175
|
-
sourceIndex: number,
|
|
176
|
-
originalLine: number,
|
|
177
|
-
originalColumn: number,
|
|
178
|
-
nameIndex: number,
|
|
179
|
-
) => void,
|
|
180
|
-
onSource: (
|
|
181
|
-
sourceIndex: number,
|
|
182
|
-
source: null | string,
|
|
183
|
-
sourceContent?: string,
|
|
184
|
-
) => void,
|
|
185
|
-
_onName: (nameIndex: number, name: string) => void,
|
|
186
|
-
): GeneratedSourceInfo;
|
|
187
|
-
}
|
|
188
|
-
declare class PrefixSource extends Source {
|
|
189
|
-
constructor(prefix: string, source: string | Source | Buffer);
|
|
190
|
-
getPrefix(): string;
|
|
191
|
-
original(): Source;
|
|
192
|
-
streamChunks(
|
|
193
|
-
options: StreamChunksOptions,
|
|
194
|
-
onChunk: (
|
|
195
|
-
chunk: undefined | string,
|
|
196
|
-
generatedLine: number,
|
|
197
|
-
generatedColumn: number,
|
|
198
|
-
sourceIndex: number,
|
|
199
|
-
originalLine: number,
|
|
200
|
-
originalColumn: number,
|
|
201
|
-
nameIndex: number,
|
|
202
|
-
) => void,
|
|
203
|
-
onSource: (
|
|
204
|
-
sourceIndex: number,
|
|
205
|
-
source: null | string,
|
|
206
|
-
sourceContent?: string,
|
|
207
|
-
) => void,
|
|
208
|
-
onName: (nameIndex: number, name: string) => void,
|
|
209
|
-
): GeneratedSourceInfo;
|
|
210
|
-
}
|
|
211
|
-
declare class RawSource extends Source {
|
|
212
|
-
constructor(value: string | Buffer, convertToString?: boolean);
|
|
213
|
-
isBuffer(): boolean;
|
|
214
|
-
streamChunks(
|
|
215
|
-
options: StreamChunksOptions,
|
|
216
|
-
onChunk: (
|
|
217
|
-
chunk: undefined | string,
|
|
218
|
-
generatedLine: number,
|
|
219
|
-
generatedColumn: number,
|
|
220
|
-
sourceIndex: number,
|
|
221
|
-
originalLine: number,
|
|
222
|
-
originalColumn: number,
|
|
223
|
-
nameIndex: number,
|
|
224
|
-
) => void,
|
|
225
|
-
onSource: (
|
|
226
|
-
sourceIndex: number,
|
|
227
|
-
source: null | string,
|
|
228
|
-
sourceContent?: string,
|
|
229
|
-
) => void,
|
|
230
|
-
onName: (nameIndex: number, name: string) => void,
|
|
231
|
-
): GeneratedSourceInfo;
|
|
232
|
-
}
|
|
233
|
-
declare interface RawSourceMap {
|
|
234
|
-
/**
|
|
235
|
-
* version
|
|
236
|
-
*/
|
|
237
|
-
version: number;
|
|
238
|
-
|
|
239
|
-
/**
|
|
240
|
-
* sources
|
|
241
|
-
*/
|
|
242
|
-
sources: string[];
|
|
243
|
-
|
|
244
|
-
/**
|
|
245
|
-
* names
|
|
246
|
-
*/
|
|
247
|
-
names: string[];
|
|
248
|
-
|
|
249
|
-
/**
|
|
250
|
-
* source root
|
|
251
|
-
*/
|
|
252
|
-
sourceRoot?: string;
|
|
253
|
-
|
|
254
|
-
/**
|
|
255
|
-
* sources content
|
|
256
|
-
*/
|
|
257
|
-
sourcesContent?: string[];
|
|
258
|
-
|
|
259
|
-
/**
|
|
260
|
-
* mappings
|
|
261
|
-
*/
|
|
262
|
-
mappings: string;
|
|
263
|
-
|
|
264
|
-
/**
|
|
265
|
-
* file
|
|
266
|
-
*/
|
|
267
|
-
file: string;
|
|
268
|
-
|
|
269
|
-
/**
|
|
270
|
-
* debug id
|
|
271
|
-
*/
|
|
272
|
-
debugId?: string;
|
|
273
|
-
|
|
274
|
-
/**
|
|
275
|
-
* ignore list
|
|
276
|
-
*/
|
|
277
|
-
ignoreList?: number[];
|
|
278
|
-
}
|
|
279
|
-
declare class ReplaceSource extends Source {
|
|
280
|
-
constructor(source: Source, name?: string);
|
|
281
|
-
getName(): undefined | string;
|
|
282
|
-
getReplacements(): Replacement[];
|
|
283
|
-
replace(start: number, end: number, newValue: string, name?: string): void;
|
|
284
|
-
insert(pos: number, newValue: string, name?: string): void;
|
|
285
|
-
original(): Source;
|
|
286
|
-
streamChunks(
|
|
287
|
-
options: StreamChunksOptions,
|
|
288
|
-
onChunk: (
|
|
289
|
-
chunk: undefined | string,
|
|
290
|
-
generatedLine: number,
|
|
291
|
-
generatedColumn: number,
|
|
292
|
-
sourceIndex: number,
|
|
293
|
-
originalLine: number,
|
|
294
|
-
originalColumn: number,
|
|
295
|
-
nameIndex: number,
|
|
296
|
-
) => void,
|
|
297
|
-
onSource: (
|
|
298
|
-
sourceIndex: number,
|
|
299
|
-
source: null | string,
|
|
300
|
-
sourceContent?: string,
|
|
301
|
-
) => void,
|
|
302
|
-
onName: (nameIndex: number, name: string) => void,
|
|
303
|
-
): GeneratedSourceInfo;
|
|
304
|
-
static Replacement: typeof Replacement;
|
|
305
|
-
}
|
|
306
|
-
declare class Replacement {
|
|
307
|
-
constructor(start: number, end: number, content: string, name?: string);
|
|
308
|
-
start: number;
|
|
309
|
-
end: number;
|
|
310
|
-
content: string;
|
|
311
|
-
name?: string;
|
|
312
|
-
index?: number;
|
|
313
|
-
}
|
|
314
|
-
declare class SizeOnlySource extends Source {
|
|
315
|
-
constructor(size: number);
|
|
316
|
-
}
|
|
317
|
-
declare class Source {
|
|
318
|
-
constructor();
|
|
319
|
-
source(): SourceValue;
|
|
320
|
-
buffer(): Buffer;
|
|
321
|
-
size(): number;
|
|
322
|
-
map(options?: MapOptions): null | RawSourceMap;
|
|
323
|
-
sourceAndMap(options?: MapOptions): SourceAndMap;
|
|
324
|
-
updateHash(hash: HashLike): void;
|
|
325
|
-
}
|
|
326
|
-
declare interface SourceAndMap {
|
|
327
|
-
/**
|
|
328
|
-
* source
|
|
329
|
-
*/
|
|
330
|
-
source: SourceValue;
|
|
331
|
-
|
|
332
|
-
/**
|
|
333
|
-
* map
|
|
334
|
-
*/
|
|
335
|
-
map: null | RawSourceMap;
|
|
336
|
-
}
|
|
337
|
-
declare interface SourceLike {
|
|
338
|
-
/**
|
|
339
|
-
* source
|
|
340
|
-
*/
|
|
341
|
-
source: () => SourceValue;
|
|
342
|
-
|
|
343
|
-
/**
|
|
344
|
-
* buffer
|
|
345
|
-
*/
|
|
346
|
-
buffer?: () => Buffer;
|
|
347
|
-
|
|
348
|
-
/**
|
|
349
|
-
* size
|
|
350
|
-
*/
|
|
351
|
-
size?: () => number;
|
|
352
|
-
|
|
353
|
-
/**
|
|
354
|
-
* map
|
|
355
|
-
*/
|
|
356
|
-
map?: (options?: MapOptions) => null | RawSourceMap;
|
|
357
|
-
|
|
358
|
-
/**
|
|
359
|
-
* source and map
|
|
360
|
-
*/
|
|
361
|
-
sourceAndMap?: (options?: MapOptions) => SourceAndMap;
|
|
362
|
-
|
|
363
|
-
/**
|
|
364
|
-
* hash updater
|
|
365
|
-
*/
|
|
366
|
-
updateHash?: (hash: HashLike) => void;
|
|
367
|
-
}
|
|
368
|
-
declare class SourceMapSource extends Source {
|
|
369
|
-
constructor(
|
|
370
|
-
value: string | Buffer,
|
|
371
|
-
name: string,
|
|
372
|
-
sourceMap?: string | RawSourceMap | Buffer,
|
|
373
|
-
originalSource?: string | Buffer,
|
|
374
|
-
innerSourceMap?: null | string | RawSourceMap | Buffer,
|
|
375
|
-
removeOriginalSource?: boolean,
|
|
376
|
-
);
|
|
377
|
-
getArgsAsBuffers(): [
|
|
378
|
-
Buffer,
|
|
379
|
-
string,
|
|
380
|
-
Buffer,
|
|
381
|
-
undefined | Buffer,
|
|
382
|
-
undefined | Buffer,
|
|
383
|
-
undefined | boolean,
|
|
384
|
-
];
|
|
385
|
-
streamChunks(
|
|
386
|
-
options: StreamChunksOptions,
|
|
387
|
-
onChunk: (
|
|
388
|
-
chunk: undefined | string,
|
|
389
|
-
generatedLine: number,
|
|
390
|
-
generatedColumn: number,
|
|
391
|
-
sourceIndex: number,
|
|
392
|
-
originalLine: number,
|
|
393
|
-
originalColumn: number,
|
|
394
|
-
nameIndex: number,
|
|
395
|
-
) => void,
|
|
396
|
-
onSource: (
|
|
397
|
-
sourceIndex: number,
|
|
398
|
-
source: null | string,
|
|
399
|
-
sourceContent?: string,
|
|
400
|
-
) => void,
|
|
401
|
-
onName: (nameIndex: number, name: string) => void,
|
|
402
|
-
): GeneratedSourceInfo;
|
|
403
|
-
}
|
|
404
|
-
type SourceValue = string | Buffer;
|
|
405
|
-
declare interface StreamChunksOptions {
|
|
406
|
-
source?: boolean;
|
|
407
|
-
finalSource?: boolean;
|
|
408
|
-
columns?: boolean;
|
|
409
|
-
}
|
|
410
31
|
declare namespace exports {
|
|
411
32
|
export namespace util {
|
|
412
|
-
export
|
|
413
|
-
|
|
414
|
-
export let enableDualStringBufferCaching: () => void;
|
|
415
|
-
export let enterStringInterningRange: () => void;
|
|
416
|
-
export let exitStringInterningRange: () => void;
|
|
417
|
-
export let internString: (str: string) => string;
|
|
418
|
-
export let isDualStringBufferCachingEnabled: () => boolean;
|
|
419
|
-
}
|
|
33
|
+
export import scopes = Scopes;
|
|
34
|
+
export import stringBufferUtils = StringBufferUtils;
|
|
420
35
|
}
|
|
421
|
-
export type OnChunk =
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
export type
|
|
431
|
-
export type
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
) => void;
|
|
36
|
+
export type OnChunk = StreamChunks.OnChunk;
|
|
37
|
+
export type OnName = StreamChunks.OnName;
|
|
38
|
+
export type OnSource = StreamChunks.OnSource;
|
|
39
|
+
export type CachedData = CachedSource.CachedData;
|
|
40
|
+
export type SourceLike = CompatSource.SourceLike;
|
|
41
|
+
export type ConcatSourceChild = ConcatSource.Child;
|
|
42
|
+
export import Replacement = ReplaceSource.Replacement;
|
|
43
|
+
export type HashLike = Source.HashLike;
|
|
44
|
+
export type MapOptions = Source.MapOptions;
|
|
45
|
+
export type RawSourceMap = Source.RawSourceMap;
|
|
46
|
+
export type SourceAndMap = Source.SourceAndMap;
|
|
47
|
+
export type SourceValue = Source.SourceValue;
|
|
48
|
+
export type GeneratedSourceInfo = GetGeneratedSourceInfo.GeneratedSourceInfo;
|
|
49
|
+
export type StreamChunksOptions = StreamChunks.Options;
|
|
436
50
|
export {
|
|
437
51
|
Source,
|
|
438
52
|
RawSource,
|
|
@@ -444,17 +58,6 @@ declare namespace exports {
|
|
|
444
58
|
PrefixSource,
|
|
445
59
|
SizeOnlySource,
|
|
446
60
|
CompatSource,
|
|
447
|
-
CachedData,
|
|
448
|
-
SourceLike,
|
|
449
|
-
ConcatSourceChild,
|
|
450
|
-
Replacement,
|
|
451
|
-
HashLike,
|
|
452
|
-
MapOptions,
|
|
453
|
-
RawSourceMap,
|
|
454
|
-
SourceAndMap,
|
|
455
|
-
SourceValue,
|
|
456
|
-
GeneratedSourceInfo,
|
|
457
|
-
StreamChunksOptions,
|
|
458
61
|
};
|
|
459
62
|
}
|
|
460
63
|
|