interface FormListOperation {
    add: ((defaultValue?, insertIndex?) => void);
    move: ((from, to) => void);
    remove: ((index) => void);
}

Properties

Properties

add: ((defaultValue?, insertIndex?) => void)

Type declaration

    • (defaultValue?, insertIndex?): void
    • Parameters

      • Optional defaultValue: any
      • Optional insertIndex: number

      Returns void

move: ((from, to) => void)

Type declaration

    • (from, to): void
    • Parameters

      • from: number
      • to: number

      Returns void

remove: ((index) => void)

Type declaration

    • (index): void
    • Parameters

      • index: number | number[]

      Returns void

Generated using TypeDoc