1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
//// [isDeclarationVisibleNodeKinds.ts]
// Function types
module schema {
export function createValidator1(schema: any): <T>(data: T) => T {
return undefined;
}
}
// Constructor types
module schema {
export function createValidator2(schema: any): new <T>(data: T) => T {
return undefined;
}
}
// union types
module schema {
export function createValidator3(schema: any): number | { new <T>(data: T): T; } {
return undefined;
}
}
// Array types
module schema {
export function createValidator4(schema: any): { new <T>(data: T): T; }[] {
return undefined;
}
}
// TypeLiterals
module schema {
export function createValidator5(schema: any): { new <T>(data: T): T } {
return undefined;
}
}
// Tuple types
module schema {
export function createValidator6(schema: any): [ new <T>(data: T) => T, number] {
return undefined;
}
}
// Paren Types
module schema {
export function createValidator7(schema: any): (new <T>(data: T)=>T )[] {
return undefined;
}
}
// Type reference
module schema {
export function createValidator8(schema: any): Array<{ <T>(data: T) : T}> {
return undefined;
}
}
module schema {
export class T {
get createValidator9(): <T>(data: T) => T {
return undefined;
}
set createValidator10(v: <T>(data: T) => T) {
}
}
}
//// [isDeclarationVisibleNodeKinds.js]
// Function types
var schema;
(function (schema_1) {
function createValidator1(schema) {
return undefined;
}
schema_1.createValidator1 = createValidator1;
})(schema || (schema = {}));
// Constructor types
(function (schema_2) {
function createValidator2(schema) {
return undefined;
}
schema_2.createValidator2 = createValidator2;
})(schema || (schema = {}));
// union types
(function (schema_3) {
function createValidator3(schema) {
return undefined;
}
schema_3.createValidator3 = createValidator3;
})(schema || (schema = {}));
// Array types
(function (schema_4) {
function createValidator4(schema) {
return undefined;
}
schema_4.createValidator4 = createValidator4;
})(schema || (schema = {}));
// TypeLiterals
(function (schema_5) {
function createValidator5(schema) {
return undefined;
}
schema_5.createValidator5 = createValidator5;
})(schema || (schema = {}));
// Tuple types
(function (schema_6) {
function createValidator6(schema) {
return undefined;
}
schema_6.createValidator6 = createValidator6;
})(schema || (schema = {}));
// Paren Types
(function (schema_7) {
function createValidator7(schema) {
return undefined;
}
schema_7.createValidator7 = createValidator7;
})(schema || (schema = {}));
// Type reference
(function (schema_8) {
function createValidator8(schema) {
return undefined;
}
schema_8.createValidator8 = createValidator8;
})(schema || (schema = {}));
(function (schema) {
var T = /** @class */ (function () {
function T() {
}
Object.defineProperty(T.prototype, "createValidator9", {
get: function () {
return undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(T.prototype, "createValidator10", {
set: function (v) {
},
enumerable: true,
configurable: true
});
return T;
}());
schema.T = T;
})(schema || (schema = {}));
//// [isDeclarationVisibleNodeKinds.d.ts]
declare module schema {
function createValidator1(schema: any): <T>(data: T) => T;
}
declare module schema {
function createValidator2(schema: any): new <T>(data: T) => T;
}
declare module schema {
function createValidator3(schema: any): number | {
new <T>(data: T): T;
};
}
declare module schema {
function createValidator4(schema: any): {
new <T>(data: T): T;
}[];
}
declare module schema {
function createValidator5(schema: any): {
new <T>(data: T): T;
};
}
declare module schema {
function createValidator6(schema: any): [new <T>(data: T) => T, number];
}
declare module schema {
function createValidator7(schema: any): (new <T>(data: T) => T)[];
}
declare module schema {
function createValidator8(schema: any): Array<{
<T>(data: T): T;
}>;
}
declare module schema {
class T {
readonly createValidator9: <T>(data: T) => T;
createValidator10: <T>(data: T) => T;
}
}
|