react-web-code-editor
Version:
A Simple and code-style Customizable web code editor with React
14 lines (13 loc) • 671 B
TypeScript
import { FlattenSimpleInterpolation } from 'styled-components';
export declare type FontWeight = '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | 'bold';
interface WrapperProps {
width?: string;
height?: string;
fontSize?: string;
fontWeight?: string;
interpolation?: FlattenSimpleInterpolation;
}
export declare const Wrapper: import("styled-components").StyledComponent<"div", any, WrapperProps, never>;
export declare const TextArea: import("styled-components").StyledComponent<"textarea", any, {}, never>;
export declare const Pre: import("styled-components").StyledComponent<"pre", any, {}, never>;
export {};