Skip to content

Commit 8fc0682

Browse files
Bashamegasaschanaz
andauthored
Migrate file system to KDL (#2234)
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
1 parent 2bdd496 commit 8fc0682

21 files changed

+34
-76
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13904,7 +13904,7 @@ interface FileReader extends EventTarget {
1390413904
*
1390513905
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
1390613906
*/
13907-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
13907+
readonly readyState: 0 | 1 | 2;
1390813908
/**
1390913909
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
1391013910
*

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3756,7 +3756,7 @@ interface FileReader extends EventTarget {
37563756
*
37573757
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
37583758
*/
3759-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
3759+
readonly readyState: 0 | 1 | 2;
37603760
/**
37613761
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
37623762
*

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3401,7 +3401,7 @@ interface FileReader extends EventTarget {
34013401
*
34023402
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
34033403
*/
3404-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
3404+
readonly readyState: 0 | 1 | 2;
34053405
/**
34063406
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
34073407
*

baselines/ts5.5/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13890,7 +13890,7 @@ interface FileReader extends EventTarget {
1389013890
*
1389113891
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
1389213892
*/
13893-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
13893+
readonly readyState: 0 | 1 | 2;
1389413894
/**
1389513895
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
1389613896
*

baselines/ts5.5/serviceworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3753,7 +3753,7 @@ interface FileReader extends EventTarget {
37533753
*
37543754
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
37553755
*/
3756-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
3756+
readonly readyState: 0 | 1 | 2;
37573757
/**
37583758
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
37593759
*

baselines/ts5.5/sharedworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3398,7 +3398,7 @@ interface FileReader extends EventTarget {
33983398
*
33993399
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
34003400
*/
3401-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
3401+
readonly readyState: 0 | 1 | 2;
34023402
/**
34033403
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
34043404
*

baselines/ts5.5/webworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4351,7 +4351,7 @@ interface FileReader extends EventTarget {
43514351
*
43524352
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
43534353
*/
4354-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
4354+
readonly readyState: 0 | 1 | 2;
43554355
/**
43564356
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
43574357
*

baselines/ts5.6/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13901,7 +13901,7 @@ interface FileReader extends EventTarget {
1390113901
*
1390213902
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
1390313903
*/
13904-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
13904+
readonly readyState: 0 | 1 | 2;
1390513905
/**
1390613906
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
1390713907
*

baselines/ts5.6/serviceworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3753,7 +3753,7 @@ interface FileReader extends EventTarget {
37533753
*
37543754
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
37553755
*/
3756-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
3756+
readonly readyState: 0 | 1 | 2;
37573757
/**
37583758
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
37593759
*

baselines/ts5.6/sharedworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3398,7 +3398,7 @@ interface FileReader extends EventTarget {
33983398
*
33993399
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)
34003400
*/
3401-
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
3401+
readonly readyState: 0 | 1 | 2;
34023402
/**
34033403
* The **`result`** read-only property of the FileReader interface returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
34043404
*

0 commit comments

Comments
 (0)