Type Alias IFetchViewTupleProps<P, A, B, C, D, E, F, G, H, I, J>

IFetchViewTupleProps: IFetchViewBaseProps<P, A, B, C, D, E, F, G, H, I, J> & {
    state: TupleState<P, A, B, C, D, E, F, G, H, I, J>;
}

Represents the properties required by the IFetchViewTuple component.

Type Parameters

  • P extends any = object

    The type of the component's props.

  • A = any

    The type of the first element in the tuple state.

  • B = any

    The type of the second element in the tuple state.

  • C = any

    The type of the third element in the tuple state.

  • D = any

    The type of the fourth element in the tuple state.

  • E = any

    The type of the fifth element in the tuple state.

  • F = any

    The type of the sixth element in the tuple state.

  • G = any

    The type of the seventh element in the tuple state.

  • H = any

    The type of the eighth element in the tuple state.

  • I = any

    The type of the ninth element in the tuple state.

  • J = any

    The type of the tenth element in the tuple state.