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
|
tests/cases/compiler/x.ts(18,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module.
tests/cases/compiler/x.ts(18,26): error TS2307: Cannot find module './x0'.
tests/cases/compiler/x.ts(19,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module.
tests/cases/compiler/x.ts(19,21): error TS2307: Cannot find module './x0'.
tests/cases/compiler/x.ts(20,5): error TS2666: Exports and export assignments are not permitted in module augmentations.
tests/cases/compiler/x.ts(20,19): error TS2307: Cannot find module './x0'.
tests/cases/compiler/x.ts(21,5): error TS2666: Exports and export assignments are not permitted in module augmentations.
tests/cases/compiler/x.ts(21,21): error TS2307: Cannot find module './x0'.
tests/cases/compiler/x.ts(25,5): error TS2666: Exports and export assignments are not permitted in module augmentations.
==== tests/cases/compiler/x0.ts (0 errors) ====
export let a = 1;
==== tests/cases/compiler/x.ts (9 errors) ====
namespace N1 {
export let x = 1;
}
declare module "./observable" {
var x: number;
let y: number;
const z: number;
let {x1, y1, z0: {n}, z1: {arr: [el1, el2, el3]}}: {x1: number, y1: string, z0: {n: number}, z1: {arr: number[]} }
interface A { x }
namespace N {
export class C {}
}
class Cls {}
function foo(): number;
type T = number;
import * as all from "./x0";
~~~~~~
!!! error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module.
~~~~~~
!!! error TS2307: Cannot find module './x0'.
import {a} from "./x0";
~~~~~~
!!! error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module.
~~~~~~
!!! error TS2307: Cannot find module './x0'.
export * from "./x0";
~~~~~~
!!! error TS2666: Exports and export assignments are not permitted in module augmentations.
~~~~~~
!!! error TS2307: Cannot find module './x0'.
export {a} from "./x0";
~~~~~~
!!! error TS2666: Exports and export assignments are not permitted in module augmentations.
~~~~~~
!!! error TS2307: Cannot find module './x0'.
}
declare module "./test" {
export = N1;
~~~~~~
!!! error TS2666: Exports and export assignments are not permitted in module augmentations.
}
export {}
==== tests/cases/compiler/observable.ts (0 errors) ====
export declare class Observable<T> {
filter(pred: (e:T) => boolean): Observable<T>;
}
export var x = 1;
==== tests/cases/compiler/test.ts (0 errors) ====
export let b = 1;
==== tests/cases/compiler/main.ts (0 errors) ====
import { Observable } from "./observable"
import "./x";
|