UNPKG

@crowdin/app-project-module

Version:

Module that generates for you all common endpoints for serving standalone Crowdin App

15 lines (14 loc) 333 B
import { FC } from 'react'; interface FormPageProps { formGetDataUrl: string; formPostDataUrl: string; formPatchDataUrl?: string; formSchema: string; formUiSchema: string; sentryData?: { dsn: string; appIdentifier: string; }; } export declare const FormPage: FC<FormPageProps>; export {};