chrome-types 0.1.215 → 0.1.216
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/_all.d.ts +33 -2
- package/index.d.ts +33 -2
- package/package.json +2 -2
package/_all.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Fri Jul 14 2023 22:29:55 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 82807cea945a45bf398a25d8e93b3a3e16ba415f
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -22492,6 +22492,14 @@ declare namespace chrome {
|
|
|
22492
22492
|
hasBeenRead: boolean;
|
|
22493
22493
|
}
|
|
22494
22494
|
|
|
22495
|
+
export interface RemoveOptions {
|
|
22496
|
+
|
|
22497
|
+
/**
|
|
22498
|
+
* The url to remove.
|
|
22499
|
+
*/
|
|
22500
|
+
url: string;
|
|
22501
|
+
}
|
|
22502
|
+
|
|
22495
22503
|
/**
|
|
22496
22504
|
* Adds an entry to the reading list if it does not exist.
|
|
22497
22505
|
*
|
|
@@ -22514,6 +22522,29 @@ declare namespace chrome {
|
|
|
22514
22522
|
|
|
22515
22523
|
callback?: () => void,
|
|
22516
22524
|
): void;
|
|
22525
|
+
|
|
22526
|
+
/**
|
|
22527
|
+
* Removes an entry from the reading list if it exists.
|
|
22528
|
+
*
|
|
22529
|
+
* @param info The entry to remove from the reading list.
|
|
22530
|
+
*/
|
|
22531
|
+
export function removeEntry(
|
|
22532
|
+
|
|
22533
|
+
info: RemoveOptions,
|
|
22534
|
+
): Promise<void>;
|
|
22535
|
+
|
|
22536
|
+
/**
|
|
22537
|
+
* Removes an entry from the reading list if it exists.
|
|
22538
|
+
*
|
|
22539
|
+
* @param info The entry to remove from the reading list.
|
|
22540
|
+
* @param callback Invoked once the entry has been removed.
|
|
22541
|
+
*/
|
|
22542
|
+
export function removeEntry(
|
|
22543
|
+
|
|
22544
|
+
info: RemoveOptions,
|
|
22545
|
+
|
|
22546
|
+
callback?: () => void,
|
|
22547
|
+
): void;
|
|
22517
22548
|
}
|
|
22518
22549
|
|
|
22519
22550
|
/**
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Fri Jul 14 2023 22:29:50 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 82807cea945a45bf398a25d8e93b3a3e16ba415f
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -17256,6 +17256,14 @@ declare namespace chrome {
|
|
|
17256
17256
|
hasBeenRead: boolean;
|
|
17257
17257
|
}
|
|
17258
17258
|
|
|
17259
|
+
export interface RemoveOptions {
|
|
17260
|
+
|
|
17261
|
+
/**
|
|
17262
|
+
* The url to remove.
|
|
17263
|
+
*/
|
|
17264
|
+
url: string;
|
|
17265
|
+
}
|
|
17266
|
+
|
|
17259
17267
|
/**
|
|
17260
17268
|
* Adds an entry to the reading list if it does not exist.
|
|
17261
17269
|
*
|
|
@@ -17278,6 +17286,29 @@ declare namespace chrome {
|
|
|
17278
17286
|
|
|
17279
17287
|
callback?: () => void,
|
|
17280
17288
|
): void;
|
|
17289
|
+
|
|
17290
|
+
/**
|
|
17291
|
+
* Removes an entry from the reading list if it exists.
|
|
17292
|
+
*
|
|
17293
|
+
* @param info The entry to remove from the reading list.
|
|
17294
|
+
*/
|
|
17295
|
+
export function removeEntry(
|
|
17296
|
+
|
|
17297
|
+
info: RemoveOptions,
|
|
17298
|
+
): Promise<void>;
|
|
17299
|
+
|
|
17300
|
+
/**
|
|
17301
|
+
* Removes an entry from the reading list if it exists.
|
|
17302
|
+
*
|
|
17303
|
+
* @param info The entry to remove from the reading list.
|
|
17304
|
+
* @param callback Invoked once the entry has been removed.
|
|
17305
|
+
*/
|
|
17306
|
+
export function removeEntry(
|
|
17307
|
+
|
|
17308
|
+
info: RemoveOptions,
|
|
17309
|
+
|
|
17310
|
+
callback?: () => void,
|
|
17311
|
+
): void;
|
|
17281
17312
|
}
|
|
17282
17313
|
|
|
17283
17314
|
/**
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "module",
|
|
6
6
|
"name": "chrome-types",
|
|
7
7
|
"config": {
|
|
8
|
-
"build-hash": "
|
|
8
|
+
"build-hash": "a878c948f2488161"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"url": "https://github.com/GoogleChrome/chrome-types/issues"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/GoogleChrome/chrome-types",
|
|
19
|
-
"version": "0.1.
|
|
19
|
+
"version": "0.1.216"
|
|
20
20
|
}
|