We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c20db74 commit 914cc7eCopy full SHA for 914cc7e
apps/api-extractor-model/src/model/ApiTypeAlias.ts
@@ -56,6 +56,14 @@ export interface IApiTypeAliasJson extends
56
export class ApiTypeAlias extends ApiTypeParameterListMixin(ApiNameMixin(ApiReleaseTagMixin(ApiDeclaredItem))) {
57
/**
58
* An {@link Excerpt} that describes the type of the alias.
59
+ *
60
+ * @remarks
61
+ * In the example below, the `aliasTypeExcerpt` would correspond to the subexpression
62
+ * `T extends any[] ? BoxedArray<T[number]> : BoxedValue<T>;`:
63
64
+ * ```ts
65
+ * export type Boxed<T> = T extends any[] ? BoxedArray<T[number]> : BoxedValue<T>;
66
+ * ```
67
*/
68
public readonly aliasTypeExcerpt: Excerpt;
69
0 commit comments