@caido/sdk-backend 0.40.1-beta.1 → 0.40.1-beta.2
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/package.json +1 -1
- package/src/index.d.ts +1 -0
- package/src/typing.d.ts +2 -2
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
package/src/typing.d.ts
CHANGED
|
@@ -65,7 +65,7 @@ declare module "caido:plugin" {
|
|
|
65
65
|
/**
|
|
66
66
|
* The SDK object available to all scripts.
|
|
67
67
|
*/
|
|
68
|
-
export
|
|
68
|
+
export interface SDK {
|
|
69
69
|
/**
|
|
70
70
|
* The console.
|
|
71
71
|
*
|
|
@@ -88,5 +88,5 @@ declare module "caido:plugin" {
|
|
|
88
88
|
* The SDK for the Events service.
|
|
89
89
|
*/
|
|
90
90
|
events: EventsSDK;
|
|
91
|
-
}
|
|
91
|
+
}
|
|
92
92
|
}
|