docz
Version:
It's has never been so easy to documents your things!
14 lines (13 loc) • 368 B
TypeScript
import { ComponentType, FC } from 'react';
export interface PlaygroundProps {
className?: string;
style?: any;
wrapper?: ComponentType<any>;
children: any;
__scope: Record<string, any>;
__position: number;
__code: string;
useScoping?: boolean;
language?: string;
}
export declare const Playground: FC<PlaygroundProps>;