@jay-framework/jay-stack-cli 0.6.6 → 0.6.8

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/dist/index.d.ts CHANGED
@@ -16,7 +16,7 @@ declare function loadConfig(): JayConfig;
16
16
  declare function getConfigWithDefaults(config: JayConfig): Required<JayConfig>;
17
17
  declare function updateConfig(updates: Partial<JayConfig>): void;
18
18
 
19
- declare function createEditorHandlers(config: JayConfig): {
19
+ declare function createEditorHandlers(config: Required<JayConfig>, tsConfigPath: string): {
20
20
  onPublish: (params: PublishMessage) => Promise<PublishResponse>;
21
21
  onSaveImage: (params: SaveImageMessage) => Promise<SaveImageResponse>;
22
22
  onHasImage: (params: HasImageMessage) => Promise<HasImageResponse>;