@appkit/dek-lib 0.10.0 → 0.11.0

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,5 +1,6 @@
1
- type Props = {
1
+ import { DekPluginElementProps } from '@appkit/dek-plugin';
2
+ type Props = DekPluginElementProps & {
2
3
  layout?: string;
3
4
  };
4
- declare const Board: ({ layout }: Props) => import("react/jsx-runtime").JSX.Element;
5
+ declare const Board: ({ api, layout }: Props) => import("react/jsx-runtime").JSX.Element;
5
6
  export default Board;