interface FakeCons<T0, T1> {
    car: T0;
    cdr: T1;
}

Type Parameters

  • T0
  • T1

Properties

Properties

car: T0
cdr: T1