hrw-certificate-editor
Version:
Design Editor Tools with React.js + ant.design + fabric.js
20 lines (19 loc) • 598 B
TypeScript
export default AcePreview;
declare class AcePreview extends React.Component<any, any, any> {
static propTypes: {
html: PropTypes.Requireable<string>;
css: PropTypes.Requireable<string>;
js: PropTypes.Requireable<string>;
};
static defaultProps: {
html: string;
css: string;
js: string;
};
constructor(props: any);
constructor(props: any, context: any);
iframeRender: (html: any, css: any, js: any) => void;
container: HTMLDivElement;
}
import React from "react";
import PropTypes from "prop-types";