@tinywork/glass 1.0.19 → 1.0.21
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/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ declare global {
|
|
|
22
22
|
|
|
23
23
|
type Cookie = {
|
|
24
24
|
name: string;
|
|
25
|
+
url: string;
|
|
25
26
|
domain?: string;
|
|
26
27
|
path?: string;
|
|
27
28
|
value?: string;
|
|
@@ -379,7 +380,7 @@ declare global {
|
|
|
379
380
|
onCaseDefault?: IGlassExtensionEvent<{
|
|
380
381
|
docs: DocSchema[];
|
|
381
382
|
log?: NetLog;
|
|
382
|
-
caseData?:
|
|
383
|
+
caseData?: Case;
|
|
383
384
|
}>;
|
|
384
385
|
}
|
|
385
386
|
|