@blocklet/pages-kit-runtime 0.1.5 → 0.1.7

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.
@@ -1,11 +1,13 @@
1
+ import Home from '@blocklet/pages-kit-inner-components/home';
1
2
  interface ProjectRuntimeProps {
2
3
  state: any;
3
4
  projectId: string;
4
5
  }
6
+ export declare const ProjectRuntimeView: () => import("react/jsx-runtime").JSX.Element;
5
7
  export declare class ProjectRuntime {
6
8
  private state;
7
9
  private projectId;
8
10
  constructor({ state, projectId }: ProjectRuntimeProps);
9
- render(container: HTMLElement): void;
11
+ render(): import("react/jsx-runtime").JSX.Element;
10
12
  }
11
- export {};
13
+ export { Home };