/** * Method details */ export declare class ConstructorImport { private readonly _name; private readonly _exportName; private readonly _sourcePath; private readonly _outPath; /** * This is the name of the actual declaration * In the example above, this would be "SomeClass" */ get name(): string | undefined; /** * The exported name of this constructor from its source file. * For example; * "export class SomeClass {}" would be "SomeClass" * "export default class SomeClass {}" would be "default" */ get exportName(): string | undefined; /** * The absolute path of the source file for this constructor */ get sourcePath(): string | undefined; /** * The absolute path for the javascript file of this constructor */ get outPath(): string | undefined; }