UNPKG

@dugongjs/cli

Version:

9 lines (8 loc) 329 B
import React from "react"; import { type PaneProps } from "../components/pane.js"; export type AggregateTypeSelectPaneProps = PaneProps & { types: string[]; selectedType: string | null; setSelectedType: (value: string) => void; }; export declare const AggregateTypeSelectPane: React.FC<AggregateTypeSelectPaneProps>;