@up-group/react-controls
Version:
We know that there are a ton of react UI library projects to choose from. Our hope with this one is to provide the next generation of react components that you can use to bootstrap your next project, or as a reference for building a UIKit. Read on to get
23 lines (22 loc) • 610 B
TypeScript
/// <reference types="react" />
import * as React from "react";
export interface CKEditorProps {
isScriptLoaded?: boolean;
config: object;
scriptUrl?: string;
content: any;
onChange: (data) => void;
activeClass?: string;
}
export interface CKEditorState {
isScriptLoaded: boolean;
config: any;
}
export default class CKEditor extends React.Component<CKEditorProps, CKEditorState> {
editorInstance: any;
static defaultProps: CKEditorProps;
constructor(props: any);
componentDidMount(): void;
onLoad(): void;
render(): JSX.Element;
}