We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c011d8 commit b8113dcCopy full SHA for b8113dc
src/client.ts
@@ -686,7 +686,7 @@ export class Kernel {
686
}
687
688
public static exportRegistry(entrypointRelpath: string): string {
689
- return appRegistry.exportJSON(entrypointRelpath);
+ return appRegistry.exportJSON();
690
691
692
static Kernel = this;
@@ -713,7 +713,7 @@ export class Kernel {
713
714
Kernel.Apps = Apps;
715
Kernel.Browser = Browser;
716
-Kernel.exportRegistry = (entrypointRelpath: string) => appRegistry.exportJSON(entrypointRelpath);
+Kernel.exportRegistry = () => appRegistry.exportJSON();
717
export declare namespace Kernel {
718
export type RequestOptions = Opts.RequestOptions;
719
0 commit comments