UNPKG

370 BTypeScriptView Raw
1import { ComponentType, SFC } from 'react';
2export interface PlaygroundProps {
3 className?: string;
4 style?: any;
5 wrapper?: ComponentType<any>;
6 children: any;
7 __scope: Record<string, any>;
8 __position: number;
9 __code: string;
10 useScoping?: boolean;
11 language?: string;
12}
13export declare const Playground: SFC<PlaygroundProps>;