Interface ReadonlyCardMetadataEnumerationArray

Коллекция только для чтения, содержащая объекты ICardMetadataEnumeration.

Hierarchy

Extensions Properties

completionOptions: readonly ICardMetadataCompletionOption[]

Варианты завершения заданий.

functionRoles: readonly ICardMetadataFunctionRole[]

Функциональные роли заданий. Идентификаторы типовых ролей перечислены в классе CardFunctionRoles.

Other Properties

length: number

Gets the length of the array. This is a number one higher than the highest element defined in an array.

observable: boolean
storageEnhancer: null | IListEnhancer<ICardMetadataEnumeration, unknown>

Methods

  • Returns a new array with all sub-array elements concatenated into it recursively up to the specified depth.

    Type Parameters

    • A

    • D extends number = 1

    Parameters

    • this: A
    • Optional depth: D

      The maximum recursion depth

    Returns FlatArray<A, D>[]

  • Determines whether an array includes a certain element, returning true or false as appropriate.

    Parameters

    • searchElement: ICardMetadataEnumeration

      The element to search for.

    • Optional fromIndex: number

      The position in this array at which to begin searching for searchElement.

    Returns boolean

  • Returns the index of the first occurrence of a value in an array.

    Parameters

    • searchElement: ICardMetadataEnumeration

      The value to locate in the array.

    • Optional fromIndex: number

      The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.

    Returns number

  • Adds all the elements of an array separated by the specified separator string.

    Parameters

    • Optional separator: string

      A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.

    Returns string

  • Returns an iterable of keys in the array

    Returns IterableIterator<number>

  • Returns the index of the last occurrence of a specified value in an array.

    Parameters

    • searchElement: ICardMetadataEnumeration

      The value to locate in the array.

    • Optional fromIndex: number

      The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.

    Returns number

  • Returns a section of an array.

    Parameters

    • Optional start: number

      The beginning of the specified portion of the array.

    • Optional end: number

      The end of the specified portion of the array. This is exclusive of the element at the index 'end'.

    Returns ICardMetadataEnumeration[]

  • Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.

    Returns string

Generated using TypeDoc