Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.12 KB

api-extractor-test-02.api.md

File metadata and controls

43 lines (30 loc) · 1.12 KB

API Report File for "api-extractor-test-02"

Do not edit this file. It is a report generated by API Extractor.

/// <reference types="long" />

import { ISimpleInterface } from 'api-extractor-test-01';
import { ReexportedClass as RenamedReexportedClass3 } from 'api-extractor-test-01';
import * as semver1 from 'semver';

// @public
export interface GenericInterface<T> {
    // (undocumented)
    member: T;
}

// @public (undocumented)
export function importDeduping1(arg1: ISimpleInterface, arg2: ISimpleInterface): void;

// @public (undocumented)
export function importDeduping2(arg1: ISimpleInterface, arg2: ISimpleInterface): void;

// @public
export class ImportedModuleAsBaseClass extends semver1.SemVer {
}

// @public
export function importedModuleAsGenericParameter(): GenericInterface<semver1.SemVer> | undefined;

// @public
export function importedModuleAsReturnType(): semver1.SemVer | undefined;

export { RenamedReexportedClass3 }

// @public
export class SubclassWithImport extends RenamedReexportedClass3 implements ISimpleInterface {
    // (undocumented)
    test(): void;
}