TypeScript/tests/baselines/reference/declFileTypeAnnotationTypeLiteral.js
2014-11-10 17:15:26 -08:00

93 lines
1.5 KiB
TypeScript

//// [declFileTypeAnnotationTypeLiteral.ts]
class c {
}
class g<T> {
}
module m {
export class c {
}
}
// Object literal with everything
var x: {
// Call signatures
(a: number): c;
(a: string): g<string>;
// Construct signatures
new (a: number): c;
new (a: string): m.c;
// Indexers
[n: number]: c;
[n: string]: c;
// Properties
a: c;
b: g<string>;
// methods
m1(): g<number>;
m2(a: string, b?: number, ...c: c[]): string;
};
// Function type
var y: (a: string) => string;
// constructor type
var z: new (a: string) => m.c;
//// [declFileTypeAnnotationTypeLiteral.js]
var c = (function () {
function c() {
}
return c;
})();
var g = (function () {
function g() {
}
return g;
})();
var m;
(function (m) {
var c = (function () {
function c() {
}
return c;
})();
m.c = c;
})(m || (m = {}));
// Object literal with everything
var x;
// Function type
var y;
// constructor type
var z;
//// [declFileTypeAnnotationTypeLiteral.d.ts]
declare class c {
}
declare class g<T> {
}
declare module m {
class c {
}
}
declare var x: {
(a: number): c;
(a: string): g<string>;
new (a: number): c;
new (a: string): m.c;
[n: number]: c;
[n: string]: c;
a: c;
b: g<string>;
m1(): g<number>;
m2(a: string, b?: number, ...c: c[]): string;
};
declare var y: (a: string) => string;
declare var z: new (a: string) => m.c;