• Iterate other the properties of the given Editable object and returns the corresponding list of widgets data.

    Type Parameters

    • T extends object

    Parameters

    • editObj: T

      The edit animation object for which to get the widgets data.

    • Optional opt: {
          exclude?: readonly string[];
          onUpdate?: ((key, value, oldValue) => void);
      }
      • Optional exclude?: readonly string[]
      • Optional onUpdate?: ((key, value, oldValue) => void)
          • (key, value, oldValue): void
          • Parameters

            • key: keyof T
            • value: T[keyof T]
            • oldValue: T[keyof T]

            Returns void

    Returns EditWidgetData[]

    An array of EditWidgetData.

Generated using TypeDoc