mirror of
https://github.com/dzeiocom/FormManager.git
synced 2025-04-22 19:02:15 +00:00
24 lines
497 B
TypeScript
24 lines
497 B
TypeScript
import FMInput from "./FMInput"
|
|
|
|
/**
|
|
* this interface is used for fetching and setting `name` to `FMInput` link
|
|
*
|
|
* @interface InputArrayInterface
|
|
*/
|
|
export interface InputArrayInterface {
|
|
[key:string]: FMInput
|
|
}
|
|
|
|
/**
|
|
* this interface is used when adding a new `FMInput` class to the FormManager
|
|
*
|
|
* @interface FMAssignInterface
|
|
*/
|
|
export interface FMAssignInterface {
|
|
input: typeof FMInput
|
|
classes?: string[] | string
|
|
attributes?: string[] | string
|
|
type?: string
|
|
tagName?: string
|
|
}
|