File tree 3 files changed +15
-0
lines changed
3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ export class Lib1Class extends Lib1ForgottenExport {
14
14
writeableProperty: string ;
15
15
}
16
16
17
+ // @public (undocumented)
18
+ export type Lib1GenericType <T1 , T2 > = {
19
+ one: T1 ;
20
+ two: T2 ;
21
+ };
22
+
17
23
// @alpha (undocumented)
18
24
export interface Lib1Interface {
19
25
}
Original file line number Diff line number Diff line change
1
+ // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2
+ // See LICENSE in the project root for license information.
3
+
4
+ /** @public */
5
+ export type Lib1GenericType < T1 , T2 > = {
6
+ one : T1 ;
7
+ two : T2 ;
8
+ } ;
Original file line number Diff line number Diff line change @@ -27,4 +27,5 @@ export class Lib1Class extends Lib1ForgottenExport {
27
27
/** @alpha */
28
28
export interface Lib1Interface { }
29
29
30
+ export { Lib1GenericType } from './Lib1GenericType' ;
30
31
export { Lib1Namespace } from './Lib1Namespace' ;
You can’t perform that action at this time.
0 commit comments