// @module: commonjs // @declaration: true // @filename: f1.ts export class A {}; // @filename: f2.ts // change the shape of Array import {A} from "./f1"; declare global { interface Array { getCountAsString(): string; } } let x = [1]; let y = x.getCountAsString().toLowerCase();