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
|
//// [tests/cases/compiler/isolatedModulesReExportType.ts] ////
//// [exportT.ts]
export type T = number;
//// [exportValue.ts]
export class C {}
//// [exportEqualsT.ts]
declare type T = number;
export = T;
//// [bar.d.ts]
export type T = number;
//// [index.d.ts]
export { T } from "./bar"; // In a declaration file, so not an error.
//// [index.d.ts]
declare module "baz" {
export { T } from "foo"; // Also allowed.
}
//// [reExportValueAsTypeOnly.ts]
export type { C } from "./exportValue";
//// [user.ts]
// Error, can't re-export something that's only a type.
export { T } from "./exportT";
export import T2 = require("./exportEqualsT");
// OK, has a value side
export { C } from "./exportValue";
// OK, even though the namespace it exports is only types.
import * as NS from "./exportT";
export { NS };
// OK, syntactically clear that a type is being re-exported.
export type T3 = T;
// Error, not clear (to an isolated module) whether `T4` is a type.
import { T } from "./exportT";
export { T as T4 };
// Ok, type-only import indicates that the export can be elided.
import type { T as TT } from "./exportT";
export { TT };
// Error, type-only declaration is in a different file.
import { C as CC } from "./reExportValueAsTypeOnly";
export { CC };
//// [exportT.js]
"use strict";
exports.__esModule = true;
//// [exportEqualsT.js]
"use strict";
exports.__esModule = true;
//// [exportValue.js]
"use strict";
exports.__esModule = true;
exports.C = void 0;
var C = /** @class */ (function () {
function C() {
}
return C;
}());
exports.C = C;
//// [reExportValueAsTypeOnly.js]
"use strict";
exports.__esModule = true;
//// [user.js]
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
exports.__esModule = true;
exports.NS = exports.C = void 0;
// OK, has a value side
var exportValue_1 = require("./exportValue");
__createBinding(exports, exportValue_1, "C");
// OK, even though the namespace it exports is only types.
var NS = require("./exportT");
exports.NS = NS;
|