@alauda/doom
Version:
Doctor Doom making docs.
12 lines (11 loc) • 410 B
TypeScript
import { type FC } from 'react';
export interface ExternalSiteBaseProps {
name: string;
template?: 'apisOverview';
}
export interface ExternalSiteNoteProps {
name: string;
displayName: string;
}
export type Notes = Partial<Record<string, FC<ExternalSiteNoteProps>>>;
export declare const ExternalSiteBase: ({ name, template }: ExternalSiteBaseProps) => import("react/jsx-runtime").JSX.Element;