TypeScript/tests/cases/conformance/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.ts
2014-07-12 17:30:19 -07:00

23 lines
422 B
TypeScript

module A {
interface Point {
x: number;
y: number;
}
export var Origin: Point = { x: 0, y: 0 };
export interface Point3d extends Point {
z: number;
}
export var Origin3d: Point3d = { x: 0, y: 0, z: 0 };
export interface Line<TPoint extends Point>{
new (start: TPoint, end: TPoint);
start: TPoint;
end: TPoint;
}
}