Interface OwnPropsOfMasterListItem

interface OwnPropsOfMasterListItem {
    enabled: boolean;
    index: number;
    path: string;
    schema: JsonSchema;
    selected: boolean;
    translations: ArrayTranslations;
    handleSelect(index): (() => void);
    removeItem(path, value): (() => void);
}

Hierarchy (view full)

Properties

enabled: boolean
index: number
path: string
schema: JsonSchema
selected: boolean
translations: ArrayTranslations

Methods

  • Parameters

    • index: number

    Returns (() => void)

      • (): void
      • Returns void

  • Parameters

    • path: string
    • value: number

    Returns (() => void)

      • (): void
      • Returns void

Generated using TypeDoc