@dugongjs/cli
Version:
10 lines (9 loc) • 331 B
TypeScript
import React from "react";
import { type PaneProps } from "../components/pane.js";
export type AggregateViewPaneProps = PaneProps & {
aggregateType: string | null;
aggregateId: string | null;
aggregate: object | null;
isDeleted: boolean;
};
export declare const AggregateViewPane: React.FC<AggregateViewPaneProps>;