UNPKG

@intuitionrobotics/live-docs

Version:
18 lines (17 loc) 387 B
import * as React from "react"; declare type State = { edit?: boolean; }; declare type Props = { docKey: string; component?: React.ReactNode; duration?: number; }; export declare class LiveDoc extends React.Component<Props, State> { static defaultProps: { component: string; }; constructor(props: Props); render(): React.JSX.Element; } export {};