docz-theme-default
Version:
The default theme of docz
12 lines (11 loc) • 333 B
TypeScript
import { SFC } from 'react';
export interface ActionsBarProps {
code: string;
showEditor: boolean;
fullscreen: boolean;
codesandboxUrl: string | null;
onClickRefresh: () => void;
onClickFullscreen: () => void;
onClickEditor: () => void;
}
export declare const ActionsBar: SFC<ActionsBarProps>;