igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
15 lines (14 loc) • 402 B
TypeScript
import { ValueType, Type } from "./type";
/**
* @hidden
*/
export declare class ValueTuple$2<T1, T2> extends ValueType {
static $t: Type;
protected $t1: Type;
protected $t2: Type;
constructor($t1: Type, $t2: Type, a: number, b: T1, c: T2);
constructor($t1: Type, $t2: Type);
constructor($t1: Type, $t2: Type, a: number, ..._rest: any[]);
a: T1;
b: T2;
}