@redhat-cloud-services/types 0.0.21 → 0.0.23
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 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -114,6 +114,7 @@ export interface ChromeAPI {
|
|
|
114
114
|
set: (key: string, quickstarts: QuickStart[]) => void;
|
|
115
115
|
toggle: (quickstartId: string) => void;
|
|
116
116
|
Catalog: typeof QuickStartCatalogPage;
|
|
117
|
+
activateQuickstart: (name: string) => Promise<void>;
|
|
117
118
|
};
|
|
118
119
|
chromeHistory: History;
|
|
119
120
|
isProd: () => boolean;
|
|
@@ -229,6 +230,7 @@ export interface ChromeAPI {
|
|
|
229
230
|
};
|
|
230
231
|
}) => T
|
|
231
232
|
) => T;
|
|
233
|
+
enablePackagesDebug: () => void;
|
|
232
234
|
}
|
|
233
235
|
|
|
234
236
|
declare global {
|