Interface FormLoadMethod<FormState, Context, Initial>

interface FormLoadMethod<FormState = any, Context = any, Initial = any> {
    metadata?: any;
    call(
        data: { context: null | Context; initial: null | Initial },
    ): FormState | Promise<FormState>;
}

Type Parameters

  • FormState = any
  • Context = any
  • Initial = any

Hierarchy

Properties

Methods

Properties

metadata?: any

Methods