Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

  • T

Hierarchy

  • SubListDto

Index

Constructors

Properties

Constructors

constructor

  • new SubListDto<T>(list?: T[], indexStart?: number, indexEnd?: number, clone?: boolean): SubListDto<T>
  • Type parameters

    • T

    Parameters

    • Optional list: T[]
    • Optional indexStart: number
    • Optional indexEnd: number
    • Optional clone: boolean

    Returns SubListDto<T>

Properties

Optional clone

clone: boolean

Tries to clone the data in the component, sometimes it may not be possible if structure is circular

default

true

indexEnd

indexEnd: number

Index to which to end the sublist - 0 means first.

default

1

minimum

0

maximum

Infinity

step

1

indexStart

indexStart: number

Index from which to start the sublist - 0 means first.

default

0

minimum

0

maximum

Infinity

step

1

list

list: T[]

The list to split into a sublist

default

undefined

Generated using TypeDoc