dotcms
Version:
This library allows you to interact with DotCMS API's easily from the browser, nodejs and React Native. [Full Documentation](https://dotcms.github.io/core-web/dotcms/)
18 lines (17 loc) • 523 B
TypeScript
import { DotCMSFormConfig } from '../models';
import { DotApiContentType } from './DotApiContentType';
import { DotCMSContentType } from 'dotcms-models';
/**
* Creates and provide methods to render a DotCMS Form
*
*/
export declare class DotApiForm {
private dotApiContentType;
private formConfig;
constructor(dotApiContentType: DotApiContentType, formConfig: DotCMSFormConfig);
/**
* Render form on provided html element
* @memberof DotApiForm
*/
get(): Promise<DotCMSContentType>;
}