@paperbits/forms
Version:
Paperbits components for form builder.
20 lines (18 loc) • 565 B
text/typescript
/**
* @license
* Copyright Paperbits. All Rights Reserved.
*
* Use of this source code is governed by a Commercial license that can be found in the LICENSE file and at https://paperbits.io/license/commercial.
*/
import { Contract } from "@paperbits/common/contract";
export interface FormContract extends Contract {
formAction: string;
formMethod?: string;
formTarget?: string;
acceptCharset?: string;
encType?: string;
identifier?: string;
formName?: string;
description?: string;
isInline?: boolean;
}