@databutton/firebase-types 1.70.6 → 1.70.7
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.
|
@@ -1306,7 +1306,9 @@ export interface PatchAttemptStrategy {
|
|
|
1306
1306
|
export interface WriteAttemptStepBase {
|
|
1307
1307
|
original: string;
|
|
1308
1308
|
search: string;
|
|
1309
|
+
searchSizeInChars: number;
|
|
1309
1310
|
replace: string;
|
|
1311
|
+
replaceSizeInChars: number;
|
|
1310
1312
|
methodsAttempted: string[];
|
|
1311
1313
|
timings: {
|
|
1312
1314
|
[key: string]: number;
|
|
@@ -1337,7 +1339,9 @@ export interface WriteAttempt {
|
|
|
1337
1339
|
};
|
|
1338
1340
|
code: {
|
|
1339
1341
|
before: string;
|
|
1342
|
+
beforeSizeInChars: number;
|
|
1340
1343
|
after: string | null;
|
|
1344
|
+
afterSizeInChars: number;
|
|
1341
1345
|
language: string;
|
|
1342
1346
|
filepath: string;
|
|
1343
1347
|
};
|