5 lines
178 B
TypeScript
5 lines
178 B
TypeScript
|
import {FieldDefinition} from "mobx-react-form";
|
||
|
|
||
|
export function createFieldDefinition<TInOut>(fieldDef:FieldDefinition<TInOut>) : FieldDefinition<TInOut> {
|
||
|
return fieldDef;
|
||
|
}
|