-
Notifications
You must be signed in to change notification settings - Fork 618
/
Copy pathapi-extractor-test-02-public.d.ts
59 lines (48 loc) · 1.54 KB
/
api-extractor-test-02-public.d.ts
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
/**
* api-extractor-test-02
*
* @remarks
* This library consumes api-extractor-test-01 and is consumed by api-extractor-test-03.
*
* @packageDocumentation
*/
/// <reference types="long" />
import { ISimpleInterface } from 'api-extractor-test-01';
import { ReexportedClass as RenamedReexportedClass3 } from 'api-extractor-test-01';
import * as semver1 from 'semver';
/**
* An interface with a generic parameter.
* @public
*/
export declare interface GenericInterface<T> {
member: T;
}
/** @public */
export declare function importDeduping1(arg1: ISimpleInterface, arg2: ISimpleInterface): void;
/** @public */
export declare function importDeduping2(arg1: ISimpleInterface, arg2: ISimpleInterface): void;
/**
* A class that inherits from a type defined in the "semver" module imported from \@types/semver.
* @public
*/
export declare class ImportedModuleAsBaseClass extends semver1.SemVer {
}
/**
* A generic parameter that references the "semver" module imported from \@types/semver.
* @public
*/
export declare function importedModuleAsGenericParameter(): GenericInterface<semver1.SemVer> | undefined;
/**
* This definition references the "semver" module imported from \@types/semver.
* @public
*/
export declare function importedModuleAsReturnType(): semver1.SemVer | undefined;
export { RenamedReexportedClass3 }
/**
* Example of a class that inherits from an externally imported class.
* @public
*/
export declare class SubclassWithImport extends RenamedReexportedClass3 implements ISimpleInterface {
test(): void;
}
export { }