@microsoft/api-extractor-model 7.29.1 → 7.29.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/index.d.ts +42 -42
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +4 -4
package/dist/tsdoc-metadata.json
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -8,48 +8,48 @@
|
|
|
8
8
|
*/
|
|
9
9
|
export { AedocDefinitions } from './aedoc/AedocDefinitions';
|
|
10
10
|
export { ReleaseTag } from './aedoc/ReleaseTag';
|
|
11
|
-
export { IApiDeclaredItemOptions, ApiDeclaredItem } from './items/ApiDeclaredItem';
|
|
12
|
-
export { IApiDocumentedItemOptions, ApiDocumentedItem } from './items/ApiDocumentedItem';
|
|
13
|
-
export { ApiItemKind, IApiItemOptions, ApiItem, IApiItemConstructor } from './items/ApiItem';
|
|
14
|
-
export { IApiPropertyItemOptions, ApiPropertyItem } from './items/ApiPropertyItem';
|
|
15
|
-
export { IApiParameterListMixinOptions, IApiParameterOptions, ApiParameterListMixin } from './mixins/ApiParameterListMixin';
|
|
16
|
-
export { IApiTypeParameterOptions, IApiTypeParameterListMixinOptions, ApiTypeParameterListMixin } from './mixins/ApiTypeParameterListMixin';
|
|
17
|
-
export { IApiAbstractMixinOptions, ApiAbstractMixin } from './mixins/ApiAbstractMixin';
|
|
18
|
-
export { IApiItemContainerMixinOptions, ApiItemContainerMixin } from './mixins/ApiItemContainerMixin';
|
|
19
|
-
export { IApiProtectedMixinOptions, ApiProtectedMixin } from './mixins/ApiProtectedMixin';
|
|
20
|
-
export { IApiReleaseTagMixinOptions, ApiReleaseTagMixin } from './mixins/ApiReleaseTagMixin';
|
|
21
|
-
export { IApiReturnTypeMixinOptions, ApiReturnTypeMixin } from './mixins/ApiReturnTypeMixin';
|
|
22
|
-
export { IApiStaticMixinOptions, ApiStaticMixin } from './mixins/ApiStaticMixin';
|
|
23
|
-
export { IApiNameMixinOptions, ApiNameMixin } from './mixins/ApiNameMixin';
|
|
24
|
-
export { IApiOptionalMixinOptions, ApiOptionalMixin } from './mixins/ApiOptionalMixin';
|
|
25
|
-
export { IApiReadonlyMixinOptions, ApiReadonlyMixin } from './mixins/ApiReadonlyMixin';
|
|
26
|
-
export { IApiInitializerMixinOptions, ApiInitializerMixin } from './mixins/ApiInitializerMixin';
|
|
27
|
-
export { IApiExportedMixinOptions, ApiExportedMixin } from './mixins/ApiExportedMixin';
|
|
28
|
-
export { IFindApiItemsResult, IFindApiItemsMessage, FindApiItemsMessageId } from './mixins/IFindApiItemsResult';
|
|
29
|
-
export { ExcerptTokenKind, IExcerptTokenRange, IExcerptToken, ExcerptToken, Excerpt } from './mixins/Excerpt';
|
|
30
|
-
export { Constructor, PropertiesOf } from './mixins/Mixin';
|
|
31
|
-
export { IApiCallSignatureOptions, ApiCallSignature } from './model/ApiCallSignature';
|
|
32
|
-
export { IApiClassOptions, ApiClass } from './model/ApiClass';
|
|
33
|
-
export { IApiConstructorOptions, ApiConstructor } from './model/ApiConstructor';
|
|
34
|
-
export { IApiConstructSignatureOptions, ApiConstructSignature } from './model/ApiConstructSignature';
|
|
35
|
-
export { IApiEntryPointOptions, ApiEntryPoint } from './model/ApiEntryPoint';
|
|
36
|
-
export { IApiEnumOptions, ApiEnum } from './model/ApiEnum';
|
|
37
|
-
export { IApiEnumMemberOptions, ApiEnumMember, EnumMemberOrder } from './model/ApiEnumMember';
|
|
38
|
-
export { IApiFunctionOptions, ApiFunction } from './model/ApiFunction';
|
|
39
|
-
export { IApiIndexSignatureOptions, ApiIndexSignature } from './model/ApiIndexSignature';
|
|
40
|
-
export { IApiInterfaceOptions, ApiInterface } from './model/ApiInterface';
|
|
41
|
-
export { IApiMethodOptions, ApiMethod } from './model/ApiMethod';
|
|
42
|
-
export { IApiMethodSignatureOptions, ApiMethodSignature } from './model/ApiMethodSignature';
|
|
11
|
+
export { type IApiDeclaredItemOptions, ApiDeclaredItem } from './items/ApiDeclaredItem';
|
|
12
|
+
export { type IApiDocumentedItemOptions, ApiDocumentedItem } from './items/ApiDocumentedItem';
|
|
13
|
+
export { ApiItemKind, type IApiItemOptions, ApiItem, type IApiItemConstructor } from './items/ApiItem';
|
|
14
|
+
export { type IApiPropertyItemOptions, ApiPropertyItem } from './items/ApiPropertyItem';
|
|
15
|
+
export { type IApiParameterListMixinOptions, type IApiParameterOptions, ApiParameterListMixin } from './mixins/ApiParameterListMixin';
|
|
16
|
+
export { type IApiTypeParameterOptions, type IApiTypeParameterListMixinOptions, ApiTypeParameterListMixin } from './mixins/ApiTypeParameterListMixin';
|
|
17
|
+
export { type IApiAbstractMixinOptions, ApiAbstractMixin } from './mixins/ApiAbstractMixin';
|
|
18
|
+
export { type IApiItemContainerMixinOptions, ApiItemContainerMixin } from './mixins/ApiItemContainerMixin';
|
|
19
|
+
export { type IApiProtectedMixinOptions, ApiProtectedMixin } from './mixins/ApiProtectedMixin';
|
|
20
|
+
export { type IApiReleaseTagMixinOptions, ApiReleaseTagMixin } from './mixins/ApiReleaseTagMixin';
|
|
21
|
+
export { type IApiReturnTypeMixinOptions, ApiReturnTypeMixin } from './mixins/ApiReturnTypeMixin';
|
|
22
|
+
export { type IApiStaticMixinOptions, ApiStaticMixin } from './mixins/ApiStaticMixin';
|
|
23
|
+
export { type IApiNameMixinOptions, ApiNameMixin } from './mixins/ApiNameMixin';
|
|
24
|
+
export { type IApiOptionalMixinOptions, ApiOptionalMixin } from './mixins/ApiOptionalMixin';
|
|
25
|
+
export { type IApiReadonlyMixinOptions, ApiReadonlyMixin } from './mixins/ApiReadonlyMixin';
|
|
26
|
+
export { type IApiInitializerMixinOptions, ApiInitializerMixin } from './mixins/ApiInitializerMixin';
|
|
27
|
+
export { type IApiExportedMixinOptions, ApiExportedMixin } from './mixins/ApiExportedMixin';
|
|
28
|
+
export { type IFindApiItemsResult, type IFindApiItemsMessage, FindApiItemsMessageId } from './mixins/IFindApiItemsResult';
|
|
29
|
+
export { ExcerptTokenKind, type IExcerptTokenRange, type IExcerptToken, ExcerptToken, Excerpt } from './mixins/Excerpt';
|
|
30
|
+
export type { Constructor, PropertiesOf } from './mixins/Mixin';
|
|
31
|
+
export { type IApiCallSignatureOptions, ApiCallSignature } from './model/ApiCallSignature';
|
|
32
|
+
export { type IApiClassOptions, ApiClass } from './model/ApiClass';
|
|
33
|
+
export { type IApiConstructorOptions, ApiConstructor } from './model/ApiConstructor';
|
|
34
|
+
export { type IApiConstructSignatureOptions, ApiConstructSignature } from './model/ApiConstructSignature';
|
|
35
|
+
export { type IApiEntryPointOptions, ApiEntryPoint } from './model/ApiEntryPoint';
|
|
36
|
+
export { type IApiEnumOptions, ApiEnum } from './model/ApiEnum';
|
|
37
|
+
export { type IApiEnumMemberOptions, ApiEnumMember, EnumMemberOrder } from './model/ApiEnumMember';
|
|
38
|
+
export { type IApiFunctionOptions, ApiFunction } from './model/ApiFunction';
|
|
39
|
+
export { type IApiIndexSignatureOptions, ApiIndexSignature } from './model/ApiIndexSignature';
|
|
40
|
+
export { type IApiInterfaceOptions, ApiInterface } from './model/ApiInterface';
|
|
41
|
+
export { type IApiMethodOptions, ApiMethod } from './model/ApiMethod';
|
|
42
|
+
export { type IApiMethodSignatureOptions, ApiMethodSignature } from './model/ApiMethodSignature';
|
|
43
43
|
export { ApiModel } from './model/ApiModel';
|
|
44
|
-
export { IApiNamespaceOptions, ApiNamespace } from './model/ApiNamespace';
|
|
45
|
-
export { IApiPackageOptions, ApiPackage, IApiPackageSaveOptions } from './model/ApiPackage';
|
|
46
|
-
export { IParameterOptions, Parameter } from './model/Parameter';
|
|
47
|
-
export { IApiPropertyOptions, ApiProperty } from './model/ApiProperty';
|
|
48
|
-
export { IApiPropertySignatureOptions, ApiPropertySignature } from './model/ApiPropertySignature';
|
|
49
|
-
export { IApiTypeAliasOptions, ApiTypeAlias } from './model/ApiTypeAlias';
|
|
50
|
-
export { ITypeParameterOptions, TypeParameter } from './model/TypeParameter';
|
|
51
|
-
export { IApiVariableOptions, ApiVariable } from './model/ApiVariable';
|
|
52
|
-
export { IResolveDeclarationReferenceResult } from './model/ModelReferenceResolver';
|
|
44
|
+
export { type IApiNamespaceOptions, ApiNamespace } from './model/ApiNamespace';
|
|
45
|
+
export { type IApiPackageOptions, ApiPackage, type IApiPackageSaveOptions } from './model/ApiPackage';
|
|
46
|
+
export { type IParameterOptions, Parameter } from './model/Parameter';
|
|
47
|
+
export { type IApiPropertyOptions, ApiProperty } from './model/ApiProperty';
|
|
48
|
+
export { type IApiPropertySignatureOptions, ApiPropertySignature } from './model/ApiPropertySignature';
|
|
49
|
+
export { type IApiTypeAliasOptions, ApiTypeAlias } from './model/ApiTypeAlias';
|
|
50
|
+
export { type ITypeParameterOptions, TypeParameter } from './model/TypeParameter';
|
|
51
|
+
export { type IApiVariableOptions, ApiVariable } from './model/ApiVariable';
|
|
52
|
+
export { type IResolveDeclarationReferenceResult } from './model/ModelReferenceResolver';
|
|
53
53
|
export { HeritageType } from './model/HeritageType';
|
|
54
|
-
export { ISourceLocationOptions, SourceLocation } from './model/SourceLocation';
|
|
54
|
+
export { type ISourceLocationOptions, SourceLocation } from './model/SourceLocation';
|
|
55
55
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA;;;;;;;GAOG;AAEH,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGhD,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;AAE3D;;;;;;;GAOG;AAEH,6DAA4D;AAAnD,oHAAA,gBAAgB,OAAA;AACzB,iDAAgD;AAAvC,wGAAA,UAAU,OAAA;AAEnB,QAAQ;AACR,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;AAE3D;;;;;;;GAOG;AAEH,6DAA4D;AAAnD,oHAAA,gBAAgB,OAAA;AACzB,iDAAgD;AAAvC,wGAAA,UAAU,OAAA;AAEnB,QAAQ;AACR,2DAAwF;AAAjD,kHAAA,eAAe,OAAA;AACtD,+DAA8F;AAArD,sHAAA,iBAAiB,OAAA;AAC1D,2CAAuG;AAA9F,sGAAA,WAAW,OAAA;AAAwB,kGAAA,OAAO,OAAA;AACnD,2DAAwF;AAAjD,kHAAA,eAAe,OAAA;AAEtD,SAAS;AACT,wEAIwC;AADtC,8HAAA,qBAAqB,OAAA;AAEvB,gFAI4C;AAD1C,sIAAA,yBAAyB,OAAA;AAE3B,8DAA4F;AAApD,oHAAA,gBAAgB,OAAA;AACxD,wEAA2G;AAA9D,8HAAA,qBAAqB,OAAA;AAClE,gEAA+F;AAAtD,sHAAA,iBAAiB,OAAA;AAC1D,kEAAkG;AAAxD,wHAAA,kBAAkB,OAAA;AAC5D,kEAAkG;AAAxD,wHAAA,kBAAkB,OAAA;AAC5D,0DAAsF;AAAhD,gHAAA,cAAc,OAAA;AACpD,sDAAgF;AAA5C,4GAAA,YAAY,OAAA;AAChD,8DAA4F;AAApD,oHAAA,gBAAgB,OAAA;AACxD,8DAA4F;AAApD,oHAAA,gBAAgB,OAAA;AACxD,oEAAqG;AAA1D,0HAAA,mBAAmB,OAAA;AAC9D,8DAA4F;AAApD,oHAAA,gBAAgB,OAAA;AACxD,oEAIsC;AADpC,4HAAA,qBAAqB,OAAA;AAGvB,4CAM0B;AALxB,2GAAA,gBAAgB,OAAA;AAGhB,uGAAA,YAAY,OAAA;AACZ,kGAAA,OAAO,OAAA;AAIT,QAAQ;AACR,6DAA2F;AAAnD,oHAAA,gBAAgB,OAAA;AACxD,6CAAmE;AAAnC,oGAAA,QAAQ,OAAA;AACxC,yDAAqF;AAA/C,gHAAA,cAAc,OAAA;AACpD,uEAA0G;AAA7D,8HAAA,qBAAqB,OAAA;AAClE,uDAAkF;AAA7C,8GAAA,aAAa,OAAA;AAClD,2CAAgE;AAAjC,kGAAA,OAAO,OAAA;AACtC,uDAAmG;AAA9D,8GAAA,aAAa,OAAA;AAAE,gHAAA,eAAe,OAAA;AACnE,mDAA4E;AAAzC,0GAAA,WAAW,OAAA;AAC9C,+DAA8F;AAArD,sHAAA,iBAAiB,OAAA;AAC1D,qDAA+E;AAA3C,4GAAA,YAAY,OAAA;AAChD,+CAAsE;AAArC,sGAAA,SAAS,OAAA;AAC1C,iEAAiG;AAAvD,wHAAA,kBAAkB,OAAA;AAC5D,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,qDAA+E;AAA3C,4GAAA,YAAY,OAAA;AAChD,iDAAsG;AAApE,wGAAA,UAAU,OAAA;AAC5C,+CAAsE;AAArC,sGAAA,SAAS,OAAA;AAC1C,mDAA4E;AAAzC,0GAAA,WAAW,OAAA;AAC9C,qEAAuG;AAA3D,4HAAA,oBAAoB,OAAA;AAChE,qDAA+E;AAA3C,4GAAA,YAAY,OAAA;AAChD,uDAAkF;AAA7C,8GAAA,aAAa,OAAA;AAClD,mDAA4E;AAAzC,0GAAA,WAAW,OAAA;AAE9C,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,yDAAqF;AAA/C,gHAAA,cAAc,OAAA","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\n/**\n * Use this library to read and write *.api.json files as defined by the\n * {@link https://api-extractor.com/ | API Extractor} tool. These files are used to generate a documentation\n * website for your TypeScript package. The files store the API signatures and doc comments that were extracted\n * from your package.\n *\n * @packageDocumentation\n */\n\nexport { AedocDefinitions } from './aedoc/AedocDefinitions';\nexport { ReleaseTag } from './aedoc/ReleaseTag';\n\n// items\nexport { type IApiDeclaredItemOptions, ApiDeclaredItem } from './items/ApiDeclaredItem';\nexport { type IApiDocumentedItemOptions, ApiDocumentedItem } from './items/ApiDocumentedItem';\nexport { ApiItemKind, type IApiItemOptions, ApiItem, type IApiItemConstructor } from './items/ApiItem';\nexport { type IApiPropertyItemOptions, ApiPropertyItem } from './items/ApiPropertyItem';\n\n// mixins\nexport {\n type IApiParameterListMixinOptions,\n type IApiParameterOptions,\n ApiParameterListMixin\n} from './mixins/ApiParameterListMixin';\nexport {\n type IApiTypeParameterOptions,\n type IApiTypeParameterListMixinOptions,\n ApiTypeParameterListMixin\n} from './mixins/ApiTypeParameterListMixin';\nexport { type IApiAbstractMixinOptions, ApiAbstractMixin } from './mixins/ApiAbstractMixin';\nexport { type IApiItemContainerMixinOptions, ApiItemContainerMixin } from './mixins/ApiItemContainerMixin';\nexport { type IApiProtectedMixinOptions, ApiProtectedMixin } from './mixins/ApiProtectedMixin';\nexport { type IApiReleaseTagMixinOptions, ApiReleaseTagMixin } from './mixins/ApiReleaseTagMixin';\nexport { type IApiReturnTypeMixinOptions, ApiReturnTypeMixin } from './mixins/ApiReturnTypeMixin';\nexport { type IApiStaticMixinOptions, ApiStaticMixin } from './mixins/ApiStaticMixin';\nexport { type IApiNameMixinOptions, ApiNameMixin } from './mixins/ApiNameMixin';\nexport { type IApiOptionalMixinOptions, ApiOptionalMixin } from './mixins/ApiOptionalMixin';\nexport { type IApiReadonlyMixinOptions, ApiReadonlyMixin } from './mixins/ApiReadonlyMixin';\nexport { type IApiInitializerMixinOptions, ApiInitializerMixin } from './mixins/ApiInitializerMixin';\nexport { type IApiExportedMixinOptions, ApiExportedMixin } from './mixins/ApiExportedMixin';\nexport {\n type IFindApiItemsResult,\n type IFindApiItemsMessage,\n FindApiItemsMessageId\n} from './mixins/IFindApiItemsResult';\n\nexport {\n ExcerptTokenKind,\n type IExcerptTokenRange,\n type IExcerptToken,\n ExcerptToken,\n Excerpt\n} from './mixins/Excerpt';\nexport type { Constructor, PropertiesOf } from './mixins/Mixin';\n\n// model\nexport { type IApiCallSignatureOptions, ApiCallSignature } from './model/ApiCallSignature';\nexport { type IApiClassOptions, ApiClass } from './model/ApiClass';\nexport { type IApiConstructorOptions, ApiConstructor } from './model/ApiConstructor';\nexport { type IApiConstructSignatureOptions, ApiConstructSignature } from './model/ApiConstructSignature';\nexport { type IApiEntryPointOptions, ApiEntryPoint } from './model/ApiEntryPoint';\nexport { type IApiEnumOptions, ApiEnum } from './model/ApiEnum';\nexport { type IApiEnumMemberOptions, ApiEnumMember, EnumMemberOrder } from './model/ApiEnumMember';\nexport { type IApiFunctionOptions, ApiFunction } from './model/ApiFunction';\nexport { type IApiIndexSignatureOptions, ApiIndexSignature } from './model/ApiIndexSignature';\nexport { type IApiInterfaceOptions, ApiInterface } from './model/ApiInterface';\nexport { type IApiMethodOptions, ApiMethod } from './model/ApiMethod';\nexport { type IApiMethodSignatureOptions, ApiMethodSignature } from './model/ApiMethodSignature';\nexport { ApiModel } from './model/ApiModel';\nexport { type IApiNamespaceOptions, ApiNamespace } from './model/ApiNamespace';\nexport { type IApiPackageOptions, ApiPackage, type IApiPackageSaveOptions } from './model/ApiPackage';\nexport { type IParameterOptions, Parameter } from './model/Parameter';\nexport { type IApiPropertyOptions, ApiProperty } from './model/ApiProperty';\nexport { type IApiPropertySignatureOptions, ApiPropertySignature } from './model/ApiPropertySignature';\nexport { type IApiTypeAliasOptions, ApiTypeAlias } from './model/ApiTypeAlias';\nexport { type ITypeParameterOptions, TypeParameter } from './model/TypeParameter';\nexport { type IApiVariableOptions, ApiVariable } from './model/ApiVariable';\nexport { type IResolveDeclarationReferenceResult } from './model/ModelReferenceResolver';\nexport { HeritageType } from './model/HeritageType';\nexport { type ISourceLocationOptions, SourceLocation } from './model/SourceLocation';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/api-extractor-model",
|
|
3
|
-
"version": "7.29.
|
|
3
|
+
"version": "7.29.3",
|
|
4
4
|
"description": "A helper library for loading and saving the .api.json files created by API Extractor",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@microsoft/tsdoc": "~0.15.0",
|
|
16
16
|
"@microsoft/tsdoc-config": "~0.17.0",
|
|
17
|
-
"@rushstack/node-core-library": "5.
|
|
17
|
+
"@rushstack/node-core-library": "5.5.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@rushstack/heft": "0.66.
|
|
21
|
-
"@rushstack/heft-node-rig": "2.6.
|
|
20
|
+
"@rushstack/heft": "0.66.17",
|
|
21
|
+
"@rushstack/heft-node-rig": "2.6.15",
|
|
22
22
|
"@types/heft-jest": "1.0.1",
|
|
23
23
|
"@types/node": "18.17.15",
|
|
24
24
|
"local-eslint-config": "1.0.0"
|