@doreamonjs/gate
Version:
gate for doreamonjs
15 lines (14 loc) • 415 B
TypeScript
import { CSSProperties, FunctionComponent } from 'react';
import './index.less';
export interface Props {
style?: CSSProperties;
className?: string;
hideHeader?: boolean;
title?: string;
url?: string;
}
export declare const Help: FunctionComponent<Props>;
export interface HelpContainerProps {
config: string;
}
export default function HelpContainer(props: HelpContainerProps): JSX.Element;