@flanksource/clicky-ui
Version:
Flanksource Clicky UI — React component library built on shadcn/ui with light/dark and density theming.
15 lines • 768 B
TypeScript
import { AnyApiReferenceConfiguration } from '@scalar/api-reference-react';
import { RenderLink } from './EndpointList';
import { OperationsApiClient } from './useOperations';
export type EntityExplorerAppProps = {
client: OperationsApiClient;
pathname: string;
renderLink: RenderLink;
basePath?: string;
showApiExplorer?: boolean;
apiExplorerMode?: "scalar" | "operations";
apiExplorerUrl?: string;
apiExplorerConfiguration?: AnyApiReferenceConfiguration;
};
export declare function EntityExplorerApp({ client, pathname, renderLink, basePath, showApiExplorer, apiExplorerMode, apiExplorerUrl, apiExplorerConfiguration, }: EntityExplorerAppProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=EntityExplorerApp.d.ts.map