-
Notifications
You must be signed in to change notification settings - Fork 618
/
Copy pathindex.ts
38 lines (29 loc) · 1.04 KB
/
index.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
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
/**
* api-extractor-test-04
*
* Test scenarios for trimming alpha/beta/internal definitions from the generated *.d.ts files.
*
* @packageDocumentation
*/
export { AlphaClass } from './AlphaClass';
export { BetaClass } from './BetaClass';
export { PublicClass, type IPublicClassInternalParameters } from './PublicClass';
export { InternalClass } from './InternalClass';
export { EntangledNamespace } from './EntangledNamespace';
export * from './EnumExamples';
export type { BetaInterface } from './BetaInterface';
/**
* This is a module-scoped variable.
* @beta
*/
export const variableDeclaration: string = 'hello';
import { AlphaClass } from './AlphaClass';
/**
* This is an exported type alias.
* @alpha
*/
export type ExportedAlias = AlphaClass;
export type { IPublicComplexInterface } from './IPublicComplexInterface';
export type { Lib1Interface } from 'api-extractor-lib1-test';