Type alias LiftedArray<T>

LiftedArray<T>: {
    length: Output<number>;
    [n: number]: Output<T>;
}

Type Parameters

  • T

Type declaration

  • [n: number]: Output<T>
  • Readonly length: Output<number>

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

Generated using TypeDoc