diff --git a/tools/api-markdown-documenter/src/renderers/markdown-renderer/default-renderers/RenderPlainText.ts b/tools/api-markdown-documenter/src/renderers/markdown-renderer/default-renderers/RenderPlainText.ts index bbe2e0191df1..d2e9f5cc305c 100644 --- a/tools/api-markdown-documenter/src/renderers/markdown-renderer/default-renderers/RenderPlainText.ts +++ b/tools/api-markdown-documenter/src/renderers/markdown-renderer/default-renderers/RenderPlainText.ts @@ -117,6 +117,6 @@ function splitLeadingAndTrailingWhitespace(text: string): SplitTextResult { export function escapeTextForMarkdown(text: string): string { return text .replace(/\\/g, "\\\\") // first replace the escape character - .replace(/[#&*<>[\]_`|~]/g, (x) => `\\${x}`) // then escape any special characters + .replace(/[#&*<[\]_`|~]/g, (x) => `\\${x}`) // then escape any special characters .replace(/---/g, "\\-\\-\\-"); // hyphens only if it's 3 or more } diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/index.md index 65f38b89f010..4eb918568df8 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/index.md @@ -1,6 +1,6 @@ # test-suite-a -[Packages](/) \> [test-suite-a](/test-suite-a/) +[Packages](/) > [test-suite-a](/test-suite-a/) Test package @@ -74,7 +74,7 @@ const foo = bar; | - | - | - | - | | [testFunction(testParameter, testOptionalParameter)](/test-suite-a/testfunction-function) | `Alpha` | TTypeParameter | Test function | | [testFunctionReturningInlineType()](/test-suite-a/testfunctionreturninginlinetype-function) | | { foo: number; bar: [TestEnum](/test-suite-a/testenum-enum/); } | Test function that returns an inline type | -| [testFunctionReturningIntersectionType()](/test-suite-a/testfunctionreturningintersectiontype-function) | `Deprecated` | [TestEmptyInterface](/test-suite-a/testemptyinterface-interface/) \& [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/)\ | Test function that returns an inline type | +| [testFunctionReturningIntersectionType()](/test-suite-a/testfunctionreturningintersectiontype-function) | `Deprecated` | [TestEmptyInterface](/test-suite-a/testemptyinterface-interface/) \& [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/)\ | Test function that returns an inline type | | [testFunctionReturningUnionType()](/test-suite-a/testfunctionreturninguniontype-function) | | string \| [TestInterface](/test-suite-a/testinterface-interface/) | Test function that returns an inline type | ## Variables diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/_constructor_-constructor.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/_constructor_-constructor.md index 8d465e312b19..78be9b13a7ff 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/_constructor_-constructor.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/_constructor_-constructor.md @@ -1,6 +1,6 @@ # (constructor) -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestAbstractClass](/test-suite-a/testabstractclass-class/) \> [(constructor)(privateProperty, protectedProperty)](/test-suite-a/testabstractclass-class/_constructor_-constructor) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestAbstractClass](/test-suite-a/testabstractclass-class/) > [(constructor)(privateProperty, protectedProperty)](/test-suite-a/testabstractclass-class/_constructor_-constructor) This is a _{@customTag constructor}_. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/abstractpropertygetter-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/abstractpropertygetter-property.md index 4d7170c74f74..ee9c57e64bdb 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/abstractpropertygetter-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/abstractpropertygetter-property.md @@ -1,6 +1,6 @@ # abstractPropertyGetter -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestAbstractClass](/test-suite-a/testabstractclass-class/) \> [abstractPropertyGetter](/test-suite-a/testabstractclass-class/abstractpropertygetter-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestAbstractClass](/test-suite-a/testabstractclass-class/) > [abstractPropertyGetter](/test-suite-a/testabstractclass-class/abstractpropertygetter-property) A test abstract getter property. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/index.md index b88d1d816ade..4a6fec336370 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/index.md @@ -1,6 +1,6 @@ # TestAbstractClass -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestAbstractClass](/test-suite-a/testabstractclass-class/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestAbstractClass](/test-suite-a/testabstractclass-class/) A test abstract class. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/protectedproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/protectedproperty-property.md index c9624a9a6d9a..ca79aead6705 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/protectedproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/protectedproperty-property.md @@ -1,6 +1,6 @@ # protectedProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestAbstractClass](/test-suite-a/testabstractclass-class/) \> [protectedProperty](/test-suite-a/testabstractclass-class/protectedproperty-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestAbstractClass](/test-suite-a/testabstractclass-class/) > [protectedProperty](/test-suite-a/testabstractclass-class/protectedproperty-property) A test protected property. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/publicabstractmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/publicabstractmethod-method.md index f3a615c3ee01..2bac0fbb55fd 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/publicabstractmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/publicabstractmethod-method.md @@ -1,6 +1,6 @@ # publicAbstractMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestAbstractClass](/test-suite-a/testabstractclass-class/) \> [publicAbstractMethod()](/test-suite-a/testabstractclass-class/publicabstractmethod-method) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestAbstractClass](/test-suite-a/testabstractclass-class/) > [publicAbstractMethod()](/test-suite-a/testabstractclass-class/publicabstractmethod-method) A test public abstract method. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/sealedmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/sealedmethod-method.md index 9bf216522f64..01a875d42f7d 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/sealedmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/sealedmethod-method.md @@ -1,6 +1,6 @@ # sealedMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestAbstractClass](/test-suite-a/testabstractclass-class/) \> [sealedMethod()](/test-suite-a/testabstractclass-class/sealedmethod-method) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestAbstractClass](/test-suite-a/testabstractclass-class/) > [sealedMethod()](/test-suite-a/testabstractclass-class/sealedmethod-method) A test `@sealed` method. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/virtualmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/virtualmethod-method.md index c126aa769331..75b77dcb28f9 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/virtualmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testabstractclass-class/virtualmethod-method.md @@ -1,6 +1,6 @@ # virtualMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestAbstractClass](/test-suite-a/testabstractclass-class/) \> [virtualMethod()](/test-suite-a/testabstractclass-class/virtualmethod-method) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestAbstractClass](/test-suite-a/testabstractclass-class/) > [virtualMethod()](/test-suite-a/testabstractclass-class/virtualmethod-method) A test `@virtual` method. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/alphamember-variable.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/alphamember-variable.md index 414cb9e48846..7aa535c0a0ec 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/alphamember-variable.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/alphamember-variable.md @@ -1,6 +1,6 @@ # alphaMember -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) \> [alphaMember](/test-suite-a/testbetanamespace-namespace/alphamember-variable) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) > [alphaMember](/test-suite-a/testbetanamespace-namespace/alphamember-variable) **WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.** diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/betamember-variable.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/betamember-variable.md index e5a87744f37a..f62b8cd62058 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/betamember-variable.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/betamember-variable.md @@ -1,6 +1,6 @@ # betaMember -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) \> [betaMember](/test-suite-a/testbetanamespace-namespace/betamember-variable) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) > [betaMember](/test-suite-a/testbetanamespace-namespace/betamember-variable) **WARNING: This API is provided as a beta preview and may change without notice. Use at your own risk.** diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/index.md index f2e135fb1c1f..4514fd1e878e 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/index.md @@ -1,6 +1,6 @@ # TestBetaNamespace -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) A namespace tagged as `@beta`. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/publicmember-variable.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/publicmember-variable.md index 1f2824a95cb4..de52ed5a3d85 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/publicmember-variable.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testbetanamespace-namespace/publicmember-variable.md @@ -1,6 +1,6 @@ # publicMember -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) \> [publicMember](/test-suite-a/testbetanamespace-namespace/publicmember-variable) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) > [publicMember](/test-suite-a/testbetanamespace-namespace/publicmember-variable) **WARNING: This API is provided as a beta preview and may change without notice. Use at your own risk.** diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/_constructor_-constructor.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/_constructor_-constructor.md index 3ebe6afa3d35..4fc01fe20f69 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/_constructor_-constructor.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/_constructor_-constructor.md @@ -1,6 +1,6 @@ # (constructor) -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [(constructor)(privateProperty, protectedProperty, testClassProperty, testClassEventProperty)](/test-suite-a/testclass-class/_constructor_-constructor) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [(constructor)(privateProperty, protectedProperty, testClassProperty, testClassEventProperty)](/test-suite-a/testclass-class/_constructor_-constructor) Test class constructor @@ -21,4 +21,4 @@ Here are some remarks about the constructor | privateProperty | number | See [TestAbstractClass](/test-suite-a/testabstractclass-class/)'s constructor. | | protectedProperty | [TestEnum](/test-suite-a/testenum-enum/) |

Some notes about the parameter.

See protectedProperty.

| | testClassProperty | TTypeParameterB | See [testClassProperty](/test-suite-a/testclass-class/testclassproperty-property). | -| testClassEventProperty | () =\> void | See [testClassEventProperty](/test-suite-a/testclass-class/testclasseventproperty-property). | +| testClassEventProperty | () => void | See [testClassEventProperty](/test-suite-a/testclass-class/testclasseventproperty-property). | diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/abstractpropertygetter-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/abstractpropertygetter-property.md index 31718ad521a8..b611320e84c5 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/abstractpropertygetter-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/abstractpropertygetter-property.md @@ -1,6 +1,6 @@ # abstractPropertyGetter -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [abstractPropertyGetter](/test-suite-a/testclass-class/abstractpropertygetter-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [abstractPropertyGetter](/test-suite-a/testclass-class/abstractpropertygetter-property) A test abstract getter property. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/index.md index fc1688fdb0fe..7bc611386715 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/index.md @@ -1,6 +1,6 @@ # TestClass -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) Test class @@ -33,7 +33,7 @@ Here are some remarks about the class | Property | Type | Description | | - | - | - | -| [testClassStaticProperty](/test-suite-a/testclass-class/testclassstaticproperty-property) | (foo: number) =\> string | Test static class property | +| [testClassStaticProperty](/test-suite-a/testclass-class/testclassstaticproperty-property) | (foo: number) => string | Test static class property | ## Static Methods @@ -45,7 +45,7 @@ Here are some remarks about the class | Property | Modifiers | Type | Description | | - | - | - | - | -| [testClassEventProperty](/test-suite-a/testclass-class/testclasseventproperty-property) | `readonly` | () =\> void | Test class event property | +| [testClassEventProperty](/test-suite-a/testclass-class/testclasseventproperty-property) | `readonly` | () => void | Test class event property | ## Properties diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/publicabstractmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/publicabstractmethod-method.md index e482678677c3..59b3588876f1 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/publicabstractmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/publicabstractmethod-method.md @@ -1,6 +1,6 @@ # publicAbstractMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [publicAbstractMethod()](/test-suite-a/testclass-class/publicabstractmethod-method) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [publicAbstractMethod()](/test-suite-a/testclass-class/publicabstractmethod-method) A test public abstract method. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclasseventproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclasseventproperty-property.md index 72cc8ed8401c..7a9bb9413532 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclasseventproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclasseventproperty-property.md @@ -1,6 +1,6 @@ # testClassEventProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [testClassEventProperty](/test-suite-a/testclass-class/testclasseventproperty-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [testClassEventProperty](/test-suite-a/testclass-class/testclasseventproperty-property) Test class event property @@ -10,7 +10,7 @@ Test class event property readonly testClassEventProperty: () => void; ``` -**Type**: () =\> void +**Type**: () => void ## Remarks {#testclasseventproperty-remarks} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassgetterproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassgetterproperty-property.md index 9f75a236e0fe..702c5b68506b 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassgetterproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassgetterproperty-property.md @@ -1,6 +1,6 @@ # testClassGetterProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [testClassGetterProperty](/test-suite-a/testclass-class/testclassgetterproperty-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [testClassGetterProperty](/test-suite-a/testclass-class/testclassgetterproperty-property) Test class property with both a getter and a setter. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassmethod-method.md index 8ebc61b5d65c..060d3e31176c 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassmethod-method.md @@ -1,6 +1,6 @@ # testClassMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [testClassMethod(input)](/test-suite-a/testclass-class/testclassmethod-method) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [testClassMethod(input)](/test-suite-a/testclass-class/testclassmethod-method) Test class method diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassproperty-property.md index 5812b24bad66..f994ee273986 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassproperty-property.md @@ -1,6 +1,6 @@ # testClassProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [testClassProperty](/test-suite-a/testclass-class/testclassproperty-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [testClassProperty](/test-suite-a/testclass-class/testclassproperty-property) Test class property diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassstaticmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassstaticmethod-method.md index 849dedf0ad90..21a2262b3fa5 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassstaticmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassstaticmethod-method.md @@ -1,6 +1,6 @@ # testClassStaticMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [testClassStaticMethod(foo)](/test-suite-a/testclass-class/testclassstaticmethod-method) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [testClassStaticMethod(foo)](/test-suite-a/testclass-class/testclassstaticmethod-method) Test class static method diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassstaticproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassstaticproperty-property.md index b113ef43dab1..8346f8be640f 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassstaticproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/testclassstaticproperty-property.md @@ -1,6 +1,6 @@ # testClassStaticProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [testClassStaticProperty](/test-suite-a/testclass-class/testclassstaticproperty-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [testClassStaticProperty](/test-suite-a/testclass-class/testclassstaticproperty-property) Test static class property @@ -10,4 +10,4 @@ Test static class property static testClassStaticProperty: (foo: number) => string; ``` -**Type**: (foo: number) =\> string +**Type**: (foo: number) => string diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/virtualmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/virtualmethod-method.md index 46761b1dd27d..869fec21a267 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/virtualmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testclass-class/virtualmethod-method.md @@ -1,6 +1,6 @@ # virtualMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class/) \> [virtualMethod()](/test-suite-a/testclass-class/virtualmethod-method) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class/) > [virtualMethod()](/test-suite-a/testclass-class/virtualmethod-method) Overrides [virtualMethod()](/test-suite-a/testabstractclass-class/virtualmethod-method). diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testconst-variable.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testconst-variable.md index fb6f0cfa02b4..45513977201d 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testconst-variable.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testconst-variable.md @@ -1,6 +1,6 @@ # testConst -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [testConst](/test-suite-a/testconst-variable) +[Packages](/) > [test-suite-a](/test-suite-a/) > [testConst](/test-suite-a/testconst-variable) Test Constant diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testconstwithemptydeprecatedblock-variable.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testconstwithemptydeprecatedblock-variable.md index 7427c4a9f7d9..92b6c38ebf94 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testconstwithemptydeprecatedblock-variable.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testconstwithemptydeprecatedblock-variable.md @@ -1,6 +1,6 @@ # testConstWithEmptyDeprecatedBlock -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [testConstWithEmptyDeprecatedBlock](/test-suite-a/testconstwithemptydeprecatedblock-variable) +[Packages](/) > [test-suite-a](/test-suite-a/) > [testConstWithEmptyDeprecatedBlock](/test-suite-a/testconstwithemptydeprecatedblock-variable) I have a `@deprecated` tag with an empty comment block. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testemptyinterface-interface/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testemptyinterface-interface/index.md index 7531136da056..6a65fa23b9a1 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testemptyinterface-interface/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testemptyinterface-interface/index.md @@ -1,6 +1,6 @@ # TestEmptyInterface -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestEmptyInterface](/test-suite-a/testemptyinterface-interface/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestEmptyInterface](/test-suite-a/testemptyinterface-interface/) An empty interface diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/index.md index 945bf388e41e..ed30d96406ab 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/index.md @@ -1,6 +1,6 @@ # TestEnum -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestEnum](/test-suite-a/testenum-enum/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestEnum](/test-suite-a/testenum-enum/) Test Enum diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue1-enummember.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue1-enummember.md index 784b13687cb4..627b39f15b70 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue1-enummember.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue1-enummember.md @@ -1,6 +1,6 @@ # TestEnumValue1 -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestEnum](/test-suite-a/testenum-enum/) \> [TestEnumValue1](/test-suite-a/testenum-enum/testenumvalue1-enummember) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestEnum](/test-suite-a/testenum-enum/) > [TestEnumValue1](/test-suite-a/testenum-enum/testenumvalue1-enummember) Test enum value 1 (string) diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue2-enummember.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue2-enummember.md index e351f3760205..c17b274cfbf2 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue2-enummember.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue2-enummember.md @@ -1,6 +1,6 @@ # TestEnumValue2 -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestEnum](/test-suite-a/testenum-enum/) \> [TestEnumValue2](/test-suite-a/testenum-enum/testenumvalue2-enummember) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestEnum](/test-suite-a/testenum-enum/) > [TestEnumValue2](/test-suite-a/testenum-enum/testenumvalue2-enummember) Test enum value 2 (number) diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue3-enummember.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue3-enummember.md index 91208cf89154..c5d7e26ea14f 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue3-enummember.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testenum-enum/testenumvalue3-enummember.md @@ -1,6 +1,6 @@ # TestEnumValue3 -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestEnum](/test-suite-a/testenum-enum/) \> [TestEnumValue3](/test-suite-a/testenum-enum/testenumvalue3-enummember) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestEnum](/test-suite-a/testenum-enum/) > [TestEnumValue3](/test-suite-a/testenum-enum/testenumvalue3-enummember) Test enum value 3 (default) diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunction-function.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunction-function.md index 0dc626643c06..197d84afae89 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunction-function.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunction-function.md @@ -1,6 +1,6 @@ # testFunction -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [testFunction(testParameter, testOptionalParameter)](/test-suite-a/testfunction-function) +[Packages](/) > [test-suite-a](/test-suite-a/) > [testFunction(testParameter, testOptionalParameter)](/test-suite-a/testfunction-function) Test function diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturninginlinetype-function.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturninginlinetype-function.md index 391d3784c231..ee696bf69246 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturninginlinetype-function.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturninginlinetype-function.md @@ -1,6 +1,6 @@ # testFunctionReturningInlineType -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [testFunctionReturningInlineType()](/test-suite-a/testfunctionreturninginlinetype-function) +[Packages](/) > [test-suite-a](/test-suite-a/) > [testFunctionReturningInlineType()](/test-suite-a/testfunctionreturninginlinetype-function) Test function that returns an inline type diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturningintersectiontype-function.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturningintersectiontype-function.md index 6c47956eba41..8727b2c07b4c 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturningintersectiontype-function.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturningintersectiontype-function.md @@ -1,6 +1,6 @@ # testFunctionReturningIntersectionType -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [testFunctionReturningIntersectionType()](/test-suite-a/testfunctionreturningintersectiontype-function) +[Packages](/) > [test-suite-a](/test-suite-a/) > [testFunctionReturningIntersectionType()](/test-suite-a/testfunctionreturningintersectiontype-function) Test function that returns an inline type @@ -18,4 +18,4 @@ export declare function testFunctionReturningIntersectionType(): TestEmptyInterf an intersection type -**Return type**: [TestEmptyInterface](/test-suite-a/testemptyinterface-interface/) \& [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/)\ +**Return type**: [TestEmptyInterface](/test-suite-a/testemptyinterface-interface/) \& [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/)\ diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturninguniontype-function.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturninguniontype-function.md index 5c8874ec41ea..f1b1a4a72dbe 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturninguniontype-function.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testfunctionreturninguniontype-function.md @@ -1,6 +1,6 @@ # testFunctionReturningUnionType -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [testFunctionReturningUnionType()](/test-suite-a/testfunctionreturninguniontype-function) +[Packages](/) > [test-suite-a](/test-suite-a/) > [testFunctionReturningUnionType()](/test-suite-a/testfunctionreturninguniontype-function) Test function that returns an inline type diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_call_-callsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_call_-callsignature.md index ab35168ec16b..39010cefd21e 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_call_-callsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_call_-callsignature.md @@ -1,6 +1,6 @@ -# (event: 'testCallSignature', listener: (input: unknown) =\> void): any +# (event: 'testCallSignature', listener: (input: unknown) => void): any -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [(event: 'testCallSignature', listener: (input: unknown) =\> void): any](/test-suite-a/testinterface-interface/_call_-callsignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [(event: 'testCallSignature', listener: (input: unknown) => void): any](/test-suite-a/testinterface-interface/_call_-callsignature) Test interface event call signature diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_call__1-callsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_call__1-callsignature.md index d3ea39fc2396..a56c1dfa26d3 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_call__1-callsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_call__1-callsignature.md @@ -1,6 +1,6 @@ -# (event: 'anotherTestCallSignature', listener: (input: number) =\> string): number +# (event: 'anotherTestCallSignature', listener: (input: number) => string): number -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [(event: 'anotherTestCallSignature', listener: (input: number) =\> string): number](/test-suite-a/testinterface-interface/_call__1-callsignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [(event: 'anotherTestCallSignature', listener: (input: number) => string): number](/test-suite-a/testinterface-interface/_call__1-callsignature) Another example call signature diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_new_-constructsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_new_-constructsignature.md index 743a036f3406..85d2043feb50 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_new_-constructsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/_new_-constructsignature.md @@ -1,6 +1,6 @@ # new (): TestInterface -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [new (): TestInterface](/test-suite-a/testinterface-interface/_new_-constructsignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [new (): TestInterface](/test-suite-a/testinterface-interface/_new_-constructsignature) Test construct signature. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/getterproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/getterproperty-property.md index 1e51ad0988ea..7c25320360ed 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/getterproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/getterproperty-property.md @@ -1,6 +1,6 @@ # getterProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [getterProperty](/test-suite-a/testinterface-interface/getterproperty-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [getterProperty](/test-suite-a/testinterface-interface/getterproperty-property) A test getter-only interface property. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/index.md index 27770fd1e77c..653ae3edea89 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/index.md @@ -1,6 +1,6 @@ # TestInterface -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) Test interface @@ -24,7 +24,7 @@ Here are some remarks about the interface | Property | Modifiers | Type | Description | | - | - | - | - | -| [testClassEventProperty](/test-suite-a/testinterface-interface/testclasseventproperty-propertysignature) | `readonly` | () =\> void | Test interface event property | +| [testClassEventProperty](/test-suite-a/testinterface-interface/testclasseventproperty-propertysignature) | `readonly` | () => void | Test interface event property | ## Properties @@ -46,8 +46,8 @@ Here are some remarks about the interface | CallSignature | Description | | - | - | -| [(event: 'testCallSignature', listener: (input: unknown) =\> void): any](/test-suite-a/testinterface-interface/_call_-callsignature) | Test interface event call signature | -| [(event: 'anotherTestCallSignature', listener: (input: number) =\> string): number](/test-suite-a/testinterface-interface/_call__1-callsignature) | Another example call signature | +| [(event: 'testCallSignature', listener: (input: unknown) => void): any](/test-suite-a/testinterface-interface/_call_-callsignature) | Test interface event call signature | +| [(event: 'anotherTestCallSignature', listener: (input: number) => string): number](/test-suite-a/testinterface-interface/_call__1-callsignature) | Another example call signature | ## See Also {#testinterface-see-also} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/propertywithbadinheritdoctarget-propertysignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/propertywithbadinheritdoctarget-propertysignature.md index 26e3ed36f27c..84b6053d9a5c 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/propertywithbadinheritdoctarget-propertysignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/propertywithbadinheritdoctarget-propertysignature.md @@ -1,6 +1,6 @@ # propertyWithBadInheritDocTarget -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [propertyWithBadInheritDocTarget](/test-suite-a/testinterface-interface/propertywithbadinheritdoctarget-propertysignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [propertyWithBadInheritDocTarget](/test-suite-a/testinterface-interface/propertywithbadinheritdoctarget-propertysignature) ## Signature {#propertywithbadinheritdoctarget-signature} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/setterproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/setterproperty-property.md index 988afeb24162..d518889eac4c 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/setterproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/setterproperty-property.md @@ -1,6 +1,6 @@ # setterProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [setterProperty](/test-suite-a/testinterface-interface/setterproperty-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [setterProperty](/test-suite-a/testinterface-interface/setterproperty-property) A test property with a getter and a setter. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testclasseventproperty-propertysignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testclasseventproperty-propertysignature.md index bc299ebb7a07..d66bccc6e1f4 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testclasseventproperty-propertysignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testclasseventproperty-propertysignature.md @@ -1,6 +1,6 @@ # testClassEventProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [testClassEventProperty](/test-suite-a/testinterface-interface/testclasseventproperty-propertysignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [testClassEventProperty](/test-suite-a/testinterface-interface/testclasseventproperty-propertysignature) Test interface event property @@ -10,7 +10,7 @@ Test interface event property readonly testClassEventProperty: () => void; ``` -**Type**: () =\> void +**Type**: () => void ## Remarks {#testclasseventproperty-remarks} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testinterfacemethod-methodsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testinterfacemethod-methodsignature.md index fb4297e014fe..ba6778e0a9e0 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testinterfacemethod-methodsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testinterfacemethod-methodsignature.md @@ -1,6 +1,6 @@ # testInterfaceMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [testInterfaceMethod()](/test-suite-a/testinterface-interface/testinterfacemethod-methodsignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [testInterfaceMethod()](/test-suite-a/testinterface-interface/testinterfacemethod-methodsignature) Test interface method diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testinterfaceproperty-propertysignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testinterfaceproperty-propertysignature.md index f9108f86a483..799a302d4d45 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testinterfaceproperty-propertysignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testinterfaceproperty-propertysignature.md @@ -1,6 +1,6 @@ # testInterfaceProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [testInterfaceProperty](/test-suite-a/testinterface-interface/testinterfaceproperty-propertysignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [testInterfaceProperty](/test-suite-a/testinterface-interface/testinterfaceproperty-propertysignature) Test interface property diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testoptionalinterfaceproperty-propertysignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testoptionalinterfaceproperty-propertysignature.md index 4b1c2187ede3..1553d350c332 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testoptionalinterfaceproperty-propertysignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterface-interface/testoptionalinterfaceproperty-propertysignature.md @@ -1,6 +1,6 @@ # testOptionalInterfaceProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface/) \> [testOptionalInterfaceProperty](/test-suite-a/testinterface-interface/testoptionalinterfaceproperty-propertysignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface/) > [testOptionalInterfaceProperty](/test-suite-a/testinterface-interface/testoptionalinterfaceproperty-propertysignature) Test optional property diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfaceextendingotherinterfaces-interface/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfaceextendingotherinterfaces-interface/index.md index 8fc519924149..2814be5cba6f 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfaceextendingotherinterfaces-interface/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfaceextendingotherinterfaces-interface/index.md @@ -1,6 +1,6 @@ # TestInterfaceExtendingOtherInterfaces -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceExtendingOtherInterfaces](/test-suite-a/testinterfaceextendingotherinterfaces-interface/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceExtendingOtherInterfaces](/test-suite-a/testinterfaceextendingotherinterfaces-interface/) Test interface that extends other interfaces @@ -10,7 +10,7 @@ Test interface that extends other interfaces export interface TestInterfaceExtendingOtherInterfaces extends TestInterface, TestMappedType, TestInterfaceWithTypeParameter ``` -**Extends**: [TestInterface](/test-suite-a/testinterface-interface/), [TestMappedType](/test-suite-a/testmappedtype-typealias/), [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/)\ +**Extends**: [TestInterface](/test-suite-a/testinterface-interface/), [TestMappedType](/test-suite-a/testmappedtype-typealias/), [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/)\ ## Remarks {#testinterfaceextendingotherinterfaces-remarks} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfaceextendingotherinterfaces-interface/testmethod-methodsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfaceextendingotherinterfaces-interface/testmethod-methodsignature.md index 1bd9353d91b8..d80888db822c 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfaceextendingotherinterfaces-interface/testmethod-methodsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfaceextendingotherinterfaces-interface/testmethod-methodsignature.md @@ -1,6 +1,6 @@ # testMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceExtendingOtherInterfaces](/test-suite-a/testinterfaceextendingotherinterfaces-interface/) \> [testMethod(input)](/test-suite-a/testinterfaceextendingotherinterfaces-interface/testmethod-methodsignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceExtendingOtherInterfaces](/test-suite-a/testinterfaceextendingotherinterfaces-interface/) > [testMethod(input)](/test-suite-a/testinterfaceextendingotherinterfaces-interface/testmethod-methodsignature) Test interface method accepting a string and returning a number. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithindexsignature-interface/_indexer_-indexsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithindexsignature-interface/_indexer_-indexsignature.md index 1c8f4693dae0..532983f0d8c7 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithindexsignature-interface/_indexer_-indexsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithindexsignature-interface/_indexer_-indexsignature.md @@ -1,6 +1,6 @@ # \[foo: number\]: { bar: string; } -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceWithIndexSignature](/test-suite-a/testinterfacewithindexsignature-interface/) \> [\[foo: number\]: { bar: string; }](/test-suite-a/testinterfacewithindexsignature-interface/_indexer_-indexsignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceWithIndexSignature](/test-suite-a/testinterfacewithindexsignature-interface/) > [\[foo: number\]: { bar: string; }](/test-suite-a/testinterfacewithindexsignature-interface/_indexer_-indexsignature) Test index signature. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithindexsignature-interface/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithindexsignature-interface/index.md index 3e50bb0dc0d8..92790f79bd45 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithindexsignature-interface/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithindexsignature-interface/index.md @@ -1,6 +1,6 @@ # TestInterfaceWithIndexSignature -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceWithIndexSignature](/test-suite-a/testinterfacewithindexsignature-interface/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceWithIndexSignature](/test-suite-a/testinterfacewithindexsignature-interface/) An interface with an index signature. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithtypeparameter-interface/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithtypeparameter-interface/index.md index 043271c175c1..12341cd81158 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithtypeparameter-interface/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithtypeparameter-interface/index.md @@ -1,6 +1,6 @@ # TestInterfaceWithTypeParameter -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/) Test interface with generic type parameter diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithtypeparameter-interface/testproperty-propertysignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithtypeparameter-interface/testproperty-propertysignature.md index 90efcde3bc5f..e095eaa9d492 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithtypeparameter-interface/testproperty-propertysignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testinterfacewithtypeparameter-interface/testproperty-propertysignature.md @@ -1,6 +1,6 @@ # testProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/) \> [testProperty](/test-suite-a/testinterfacewithtypeparameter-interface/testproperty-propertysignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/) > [testProperty](/test-suite-a/testinterfacewithtypeparameter-interface/testproperty-propertysignature) A test interface property using generic type parameter diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmappedtype-typealias/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmappedtype-typealias/index.md index ba7e723a86f9..5ff662f30172 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmappedtype-typealias/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmappedtype-typealias/index.md @@ -1,6 +1,6 @@ # TestMappedType -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestMappedType](/test-suite-a/testmappedtype-typealias/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestMappedType](/test-suite-a/testmappedtype-typealias/) Test Mapped Type, using [TestEnum](/test-suite-a/testenum-enum/) diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmodule-namespace/foo-variable.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmodule-namespace/foo-variable.md index a2022f186dcf..4a3b09a22aae 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmodule-namespace/foo-variable.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmodule-namespace/foo-variable.md @@ -1,6 +1,6 @@ # foo -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestModule](/test-suite-a/testmodule-namespace/) \> [foo](/test-suite-a/testmodule-namespace/foo-variable) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestModule](/test-suite-a/testmodule-namespace/) > [foo](/test-suite-a/testmodule-namespace/foo-variable) Test constant in module. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmodule-namespace/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmodule-namespace/index.md index 0df76dee3aed..efa009de0364 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmodule-namespace/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testmodule-namespace/index.md @@ -1,6 +1,6 @@ # TestModule -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestModule](/test-suite-a/testmodule-namespace/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestModule](/test-suite-a/testmodule-namespace/) ## Variables diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/index.md index 18d838aac38f..b8c1d7496f12 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/index.md @@ -1,6 +1,6 @@ # TestNamespace -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) Test Namespace diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/_constructor_-constructor.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/_constructor_-constructor.md index 0c863be753f5..81a69a95a8c2 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/_constructor_-constructor.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/_constructor_-constructor.md @@ -1,6 +1,6 @@ # (constructor) -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestClass](/test-suite-a/testnamespace-namespace/testclass-class/) \> [(constructor)(testClassProperty)](/test-suite-a/testnamespace-namespace/testclass-class/_constructor_-constructor) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestClass](/test-suite-a/testnamespace-namespace/testclass-class/) > [(constructor)(testClassProperty)](/test-suite-a/testnamespace-namespace/testclass-class/_constructor_-constructor) Test class constructor diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/index.md index 16df0d04c8e0..4f1feda64243 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/index.md @@ -1,6 +1,6 @@ # TestClass -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestClass](/test-suite-a/testnamespace-namespace/testclass-class/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestClass](/test-suite-a/testnamespace-namespace/testclass-class/) Test class @@ -26,4 +26,4 @@ class TestClass | Method | Return Type | Description | | - | - | - | -| [testClassMethod(testParameter)](/test-suite-a/testnamespace-namespace/testclass-class/testclassmethod-method) | Promise\ | Test class method | +| [testClassMethod(testParameter)](/test-suite-a/testnamespace-namespace/testclass-class/testclassmethod-method) | Promise\ | Test class method | diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/testclassmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/testclassmethod-method.md index b922382842d6..59aec401f8b2 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/testclassmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/testclassmethod-method.md @@ -1,6 +1,6 @@ # testClassMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestClass](/test-suite-a/testnamespace-namespace/testclass-class/) \> [testClassMethod(testParameter)](/test-suite-a/testnamespace-namespace/testclass-class/testclassmethod-method) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestClass](/test-suite-a/testnamespace-namespace/testclass-class/) > [testClassMethod(testParameter)](/test-suite-a/testnamespace-namespace/testclass-class/testclassmethod-method) Test class method @@ -20,7 +20,7 @@ testClassMethod(testParameter: string): Promise; A Promise -**Return type**: Promise\ +**Return type**: Promise\ ## Throws {#testclassmethod-throws} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/testclassproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/testclassproperty-property.md index c1b42c95ec78..affc039d7a68 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/testclassproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testclass-class/testclassproperty-property.md @@ -1,6 +1,6 @@ # testClassProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestClass](/test-suite-a/testnamespace-namespace/testclass-class/) \> [testClassProperty](/test-suite-a/testnamespace-namespace/testclass-class/testclassproperty-property) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestClass](/test-suite-a/testnamespace-namespace/testclass-class/) > [testClassProperty](/test-suite-a/testnamespace-namespace/testclass-class/testclassproperty-property) Test interface property diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testconst-variable.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testconst-variable.md index e2ce4ebbcf0b..f39737bc5b09 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testconst-variable.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testconst-variable.md @@ -1,6 +1,6 @@ # TestConst -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestConst](/test-suite-a/testnamespace-namespace/testconst-variable) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestConst](/test-suite-a/testnamespace-namespace/testconst-variable) Test Constant diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/index.md index 79377a387f65..77566b8a0393 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/index.md @@ -1,6 +1,6 @@ # TestEnum -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum/) Test Enum diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue1-enummember.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue1-enummember.md index 8fc3f66d1bbd..68371512d768 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue1-enummember.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue1-enummember.md @@ -1,6 +1,6 @@ # TestEnumValue1 -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum/) \> [TestEnumValue1](/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue1-enummember) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum/) > [TestEnumValue1](/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue1-enummember) Test enum value 1 diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue2-enummember.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue2-enummember.md index b4d873c8d1cf..eca3f581df04 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue2-enummember.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue2-enummember.md @@ -1,6 +1,6 @@ # TestEnumValue2 -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum/) \> [TestEnumValue2](/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue2-enummember) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum/) > [TestEnumValue2](/test-suite-a/testnamespace-namespace/testenum-enum/testenumvalue2-enummember) Test enum value 2 diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testfunction-function.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testfunction-function.md index 402ebdb671a8..e903fcae0a2f 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testfunction-function.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testfunction-function.md @@ -1,6 +1,6 @@ # testFunction -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [testFunction(testParameter)](/test-suite-a/testnamespace-namespace/testfunction-function) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [testFunction(testParameter)](/test-suite-a/testnamespace-namespace/testfunction-function) Test function diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/index.md index b00ac73b4397..f373bc22977c 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/index.md @@ -1,6 +1,6 @@ # TestInterface -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestInterface](/test-suite-a/testnamespace-namespace/testinterface-interface/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestInterface](/test-suite-a/testnamespace-namespace/testinterface-interface/) Test interface @@ -12,7 +12,7 @@ Test interface interface TestInterface extends TestInterfaceWithTypeParameter ``` -**Extends**: [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/)\<[TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum/)\> +**Extends**: [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface/)\<[TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum/)> ## Properties diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfacemethod-methodsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfacemethod-methodsignature.md index 54b91a7da549..c41decde156f 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfacemethod-methodsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfacemethod-methodsignature.md @@ -1,6 +1,6 @@ # testInterfaceMethod -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestInterface](/test-suite-a/testnamespace-namespace/testinterface-interface/) \> [testInterfaceMethod()](/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfacemethod-methodsignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestInterface](/test-suite-a/testnamespace-namespace/testinterface-interface/) > [testInterfaceMethod()](/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfacemethod-methodsignature) Test interface method diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfaceproperty-propertysignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfaceproperty-propertysignature.md index d1e9d686eaae..6ae4a6f368be 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfaceproperty-propertysignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfaceproperty-propertysignature.md @@ -1,6 +1,6 @@ # testInterfaceProperty -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestInterface](/test-suite-a/testnamespace-namespace/testinterface-interface/) \> [testInterfaceProperty](/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfaceproperty-propertysignature) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestInterface](/test-suite-a/testnamespace-namespace/testinterface-interface/) > [testInterfaceProperty](/test-suite-a/testnamespace-namespace/testinterface-interface/testinterfaceproperty-propertysignature) Test interface property diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/index.md index a9f6637b4b38..197316b6ee2e 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/index.md @@ -1,6 +1,6 @@ # TestSubNamespace -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestSubNamespace](/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestSubNamespace](/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/) Test sub-namespace diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testtypealias-typealias/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testtypealias-typealias/index.md index 4e5ae8222537..af29f6b313d8 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testtypealias-typealias/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/testnamespace-namespace/testtypealias-typealias/index.md @@ -1,6 +1,6 @@ # TestTypeAlias -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestTypeAlias](/test-suite-a/testnamespace-namespace/testtypealias-typealias/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestTypeAlias](/test-suite-a/testnamespace-namespace/testtypealias-typealias/) Test Type-Alias diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/typealias-typealias/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/typealias-typealias/index.md index 1557941981cd..31b4ca581aea 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/typealias-typealias/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-a/typealias-typealias/index.md @@ -1,6 +1,6 @@ # TypeAlias -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TypeAlias](/test-suite-a/typealias-typealias/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TypeAlias](/test-suite-a/typealias-typealias/) Test Type-Alias diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/foo-interface/bar-propertysignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/foo-interface/bar-propertysignature.md index 11567fab6d10..cc8fb68258f3 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/foo-interface/bar-propertysignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/foo-interface/bar-propertysignature.md @@ -1,6 +1,6 @@ # bar -[Packages](/) \> [test-suite-b](/test-suite-b/) \> [Foo](/test-suite-b/foo-interface/) \> [bar](/test-suite-b/foo-interface/bar-propertysignature) +[Packages](/) > [test-suite-b](/test-suite-b/) > [Foo](/test-suite-b/foo-interface/) > [bar](/test-suite-b/foo-interface/bar-propertysignature) Test Enum diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/foo-interface/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/foo-interface/index.md index 3e72cce4d96c..48c5df2aa5d7 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/foo-interface/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/foo-interface/index.md @@ -1,6 +1,6 @@ # Foo -[Packages](/) \> [test-suite-b](/test-suite-b/) \> [Foo](/test-suite-b/foo-interface/) +[Packages](/) > [test-suite-b](/test-suite-b/) > [Foo](/test-suite-b/foo-interface/) Bar diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/index.md index 0b51073396ea..01a7115dcb2e 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/deep-config/test-suite-b/index.md @@ -1,6 +1,6 @@ # test-suite-b -[Packages](/) \> [test-suite-b](/test-suite-b/) +[Packages](/) > [test-suite-b](/test-suite-b/) ## Interfaces diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/index.md index 6a61830f4f50..b6526c04c1aa 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/index.md @@ -1,6 +1,6 @@ # test-suite-a -[Packages](/) \> [test-suite-a](/test-suite-a/) +[Packages](/) > [test-suite-a](/test-suite-a/) Test package @@ -74,7 +74,7 @@ const foo = bar; | - | - | - | - | | [testFunction(testParameter, testOptionalParameter)](/test-suite-a/#testfunction-function) | `Alpha` | TTypeParameter | Test function | | [testFunctionReturningInlineType()](/test-suite-a/#testfunctionreturninginlinetype-function) | | { foo: number; bar: [TestEnum](/test-suite-a/testenum-enum); } | Test function that returns an inline type | -| [testFunctionReturningIntersectionType()](/test-suite-a/#testfunctionreturningintersectiontype-function) | `Deprecated` | [TestEmptyInterface](/test-suite-a/testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface)\ | Test function that returns an inline type | +| [testFunctionReturningIntersectionType()](/test-suite-a/#testfunctionreturningintersectiontype-function) | `Deprecated` | [TestEmptyInterface](/test-suite-a/testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface)\ | Test function that returns an inline type | | [testFunctionReturningUnionType()](/test-suite-a/#testfunctionreturninguniontype-function) | | string \| [TestInterface](/test-suite-a/testinterface-interface) | Test function that returns an inline type | ## Variables @@ -170,7 +170,7 @@ export declare function testFunctionReturningIntersectionType(): TestEmptyInterf an intersection type -**Return type**: [TestEmptyInterface](/test-suite-a/testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface)\ +**Return type**: [TestEmptyInterface](/test-suite-a/testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface)\ ### testFunctionReturningUnionType {#testfunctionreturninguniontype-function} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testabstractclass-class.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testabstractclass-class.md index 9fda9e2c7bec..140acd748da6 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testabstractclass-class.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testabstractclass-class.md @@ -1,6 +1,6 @@ # TestAbstractClass -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestAbstractClass](/test-suite-a/testabstractclass-class) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestAbstractClass](/test-suite-a/testabstractclass-class) A test abstract class. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testbetanamespace-namespace/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testbetanamespace-namespace/index.md index 83c571fbf8d2..5a01028ba8e6 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testbetanamespace-namespace/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testbetanamespace-namespace/index.md @@ -1,6 +1,6 @@ # TestBetaNamespace -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestBetaNamespace](/test-suite-a/testbetanamespace-namespace/) A namespace tagged as `@beta`. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testclass-class.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testclass-class.md index 7dc95b7f4e92..635325dbc86d 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testclass-class.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testclass-class.md @@ -1,6 +1,6 @@ # TestClass -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestClass](/test-suite-a/testclass-class) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestClass](/test-suite-a/testclass-class) Test class @@ -33,7 +33,7 @@ Here are some remarks about the class | Property | Type | Description | | - | - | - | -| [testClassStaticProperty](/test-suite-a/testclass-class#testclassstaticproperty-property) | (foo: number) =\> string | Test static class property | +| [testClassStaticProperty](/test-suite-a/testclass-class#testclassstaticproperty-property) | (foo: number) => string | Test static class property | ## Static Methods @@ -45,7 +45,7 @@ Here are some remarks about the class | Property | Modifiers | Type | Description | | - | - | - | - | -| [testClassEventProperty](/test-suite-a/testclass-class#testclasseventproperty-property) | `readonly` | () =\> void | Test class event property | +| [testClassEventProperty](/test-suite-a/testclass-class#testclasseventproperty-property) | `readonly` | () => void | Test class event property | ## Properties @@ -86,7 +86,7 @@ Here are some remarks about the constructor | privateProperty | number | See [TestAbstractClass](/test-suite-a/testabstractclass-class)'s constructor. | | protectedProperty | [TestEnum](/test-suite-a/testenum-enum) |

Some notes about the parameter.

See protectedProperty.

| | testClassProperty | TTypeParameterB | See [testClassProperty](/test-suite-a/testclass-class#testclassproperty-property). | -| testClassEventProperty | () =\> void | See [testClassEventProperty](/test-suite-a/testclass-class#testclasseventproperty-property). | +| testClassEventProperty | () => void | See [testClassEventProperty](/test-suite-a/testclass-class#testclasseventproperty-property). | ## Event Details @@ -100,7 +100,7 @@ Test class event property readonly testClassEventProperty: () => void; ``` -**Type**: () =\> void +**Type**: () => void #### Remarks {#testclasseventproperty-remarks} @@ -164,7 +164,7 @@ Test static class property static testClassStaticProperty: (foo: number) => string; ``` -**Type**: (foo: number) =\> string +**Type**: (foo: number) => string ## Method Details diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testemptyinterface-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testemptyinterface-interface.md index 34f3b214684f..5809748a1872 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testemptyinterface-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testemptyinterface-interface.md @@ -1,6 +1,6 @@ # TestEmptyInterface -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestEmptyInterface](/test-suite-a/testemptyinterface-interface) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestEmptyInterface](/test-suite-a/testemptyinterface-interface) An empty interface diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testenum-enum.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testenum-enum.md index 35908883d5d7..bf15ca9d078d 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testenum-enum.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testenum-enum.md @@ -1,6 +1,6 @@ # TestEnum -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestEnum](/test-suite-a/testenum-enum) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestEnum](/test-suite-a/testenum-enum) Test Enum diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterface-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterface-interface.md index 5273d8aea7f6..794a95fa5f70 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterface-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterface-interface.md @@ -1,6 +1,6 @@ # TestInterface -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterface](/test-suite-a/testinterface-interface) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterface](/test-suite-a/testinterface-interface) Test interface @@ -24,7 +24,7 @@ Here are some remarks about the interface | Property | Modifiers | Type | Description | | - | - | - | - | -| [testClassEventProperty](/test-suite-a/testinterface-interface#testclasseventproperty-propertysignature) | `readonly` | () =\> void | Test interface event property | +| [testClassEventProperty](/test-suite-a/testinterface-interface#testclasseventproperty-propertysignature) | `readonly` | () => void | Test interface event property | ## Properties @@ -46,8 +46,8 @@ Here are some remarks about the interface | CallSignature | Description | | - | - | -| [(event: 'testCallSignature', listener: (input: unknown) =\> void): any](/test-suite-a/testinterface-interface#_call_-callsignature) | Test interface event call signature | -| [(event: 'anotherTestCallSignature', listener: (input: number) =\> string): number](/test-suite-a/testinterface-interface#_call__1-callsignature) | Another example call signature | +| [(event: 'testCallSignature', listener: (input: unknown) => void): any](/test-suite-a/testinterface-interface#_call_-callsignature) | Test interface event call signature | +| [(event: 'anotherTestCallSignature', listener: (input: number) => string): number](/test-suite-a/testinterface-interface#_call__1-callsignature) | Another example call signature | ## Constructor Details @@ -77,7 +77,7 @@ Test interface event property readonly testClassEventProperty: () => void; ``` -**Type**: () =\> void +**Type**: () => void #### Remarks {#testclasseventproperty-remarks} @@ -166,7 +166,7 @@ Here are some remarks about the method ## Call Signature Details -### (event: 'testCallSignature', listener: (input: unknown) =\> void): any {#\_call\_-callsignature} +### (event: 'testCallSignature', listener: (input: unknown) => void): any {#\_call\_-callsignature} Test interface event call signature @@ -180,7 +180,7 @@ Test interface event call signature Here are some remarks about the event call signature -### (event: 'anotherTestCallSignature', listener: (input: number) =\> string): number {#\_call\_\_1-callsignature} +### (event: 'anotherTestCallSignature', listener: (input: number) => string): number {#\_call\_\_1-callsignature} Another example call signature diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfaceextendingotherinterfaces-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfaceextendingotherinterfaces-interface.md index a50dbcfb8ce9..a34ebe31b81e 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfaceextendingotherinterfaces-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfaceextendingotherinterfaces-interface.md @@ -1,6 +1,6 @@ # TestInterfaceExtendingOtherInterfaces -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceExtendingOtherInterfaces](/test-suite-a/testinterfaceextendingotherinterfaces-interface) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceExtendingOtherInterfaces](/test-suite-a/testinterfaceextendingotherinterfaces-interface) Test interface that extends other interfaces @@ -10,7 +10,7 @@ Test interface that extends other interfaces export interface TestInterfaceExtendingOtherInterfaces extends TestInterface, TestMappedType, TestInterfaceWithTypeParameter ``` -**Extends**: [TestInterface](/test-suite-a/testinterface-interface), [TestMappedType](/test-suite-a/testmappedtype-typealias), [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface)\ +**Extends**: [TestInterface](/test-suite-a/testinterface-interface), [TestMappedType](/test-suite-a/testmappedtype-typealias), [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface)\ ## Remarks {#testinterfaceextendingotherinterfaces-remarks} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfacewithindexsignature-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfacewithindexsignature-interface.md index 8807a5c97672..6dcf9584cd05 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfacewithindexsignature-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfacewithindexsignature-interface.md @@ -1,6 +1,6 @@ # TestInterfaceWithIndexSignature -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceWithIndexSignature](/test-suite-a/testinterfacewithindexsignature-interface) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceWithIndexSignature](/test-suite-a/testinterfacewithindexsignature-interface) An interface with an index signature. diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfacewithtypeparameter-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfacewithtypeparameter-interface.md index 42bccbf57f01..93bfaf9a2f5a 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfacewithtypeparameter-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testinterfacewithtypeparameter-interface.md @@ -1,6 +1,6 @@ # TestInterfaceWithTypeParameter -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface) Test interface with generic type parameter diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testmappedtype-typealias.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testmappedtype-typealias.md index fe06198ab0a0..8a7321d4bfa4 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testmappedtype-typealias.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testmappedtype-typealias.md @@ -1,6 +1,6 @@ # TestMappedType -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestMappedType](/test-suite-a/testmappedtype-typealias) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestMappedType](/test-suite-a/testmappedtype-typealias) Test Mapped Type, using [TestEnum](/test-suite-a/testenum-enum) diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testmodule-namespace/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testmodule-namespace/index.md index 92fdcd8b5d9a..3716c78f4e22 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testmodule-namespace/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testmodule-namespace/index.md @@ -1,6 +1,6 @@ # TestModule -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestModule](/test-suite-a/testmodule-namespace/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestModule](/test-suite-a/testmodule-namespace/) ## Variables diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/index.md index a96a32fa72aa..63bfd877de57 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/index.md @@ -1,6 +1,6 @@ # TestNamespace -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) Test Namespace diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testclass-class.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testclass-class.md index 34c19ea6dbcc..130b1ab607b7 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testclass-class.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testclass-class.md @@ -1,6 +1,6 @@ # TestClass -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestClass](/test-suite-a/testnamespace-namespace/testclass-class) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestClass](/test-suite-a/testnamespace-namespace/testclass-class) Test class @@ -26,7 +26,7 @@ class TestClass | Method | Return Type | Description | | - | - | - | -| [testClassMethod(testParameter)](/test-suite-a/testnamespace-namespace/testclass-class#testclassmethod-method) | Promise\ | Test class method | +| [testClassMethod(testParameter)](/test-suite-a/testnamespace-namespace/testclass-class#testclassmethod-method) | Promise\ | Test class method | ## Constructor Details @@ -82,7 +82,7 @@ testClassMethod(testParameter: string): Promise; A Promise -**Return type**: Promise\ +**Return type**: Promise\ #### Throws {#testclassmethod-throws} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testenum-enum.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testenum-enum.md index ad8e51f429a1..033ced7a538b 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testenum-enum.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testenum-enum.md @@ -1,6 +1,6 @@ # TestEnum -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum) Test Enum diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testinterface-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testinterface-interface.md index da70236a9a6d..9335f2c0d250 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testinterface-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testinterface-interface.md @@ -1,6 +1,6 @@ # TestInterface -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestInterface](/test-suite-a/testnamespace-namespace/testinterface-interface) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestInterface](/test-suite-a/testnamespace-namespace/testinterface-interface) Test interface @@ -12,7 +12,7 @@ Test interface interface TestInterface extends TestInterfaceWithTypeParameter ``` -**Extends**: [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface)\<[TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum)\> +**Extends**: [TestInterfaceWithTypeParameter](/test-suite-a/testinterfacewithtypeparameter-interface)\<[TestEnum](/test-suite-a/testnamespace-namespace/testenum-enum)> ## Properties diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/index.md index a9f6637b4b38..197316b6ee2e 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/index.md @@ -1,6 +1,6 @@ # TestSubNamespace -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestSubNamespace](/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestSubNamespace](/test-suite-a/testnamespace-namespace/testsubnamespace-namespace/) Test sub-namespace diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testtypealias-typealias.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testtypealias-typealias.md index ad1ab3d479b5..2bdb917fa51a 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testtypealias-typealias.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/testnamespace-namespace/testtypealias-typealias.md @@ -1,6 +1,6 @@ # TestTypeAlias -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TestNamespace](/test-suite-a/testnamespace-namespace/) \> [TestTypeAlias](/test-suite-a/testnamespace-namespace/testtypealias-typealias) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TestNamespace](/test-suite-a/testnamespace-namespace/) > [TestTypeAlias](/test-suite-a/testnamespace-namespace/testtypealias-typealias) Test Type-Alias diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/typealias-typealias.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/typealias-typealias.md index c0dd8e67e320..f103bab0767c 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/typealias-typealias.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-a/typealias-typealias.md @@ -1,6 +1,6 @@ # TypeAlias -[Packages](/) \> [test-suite-a](/test-suite-a/) \> [TypeAlias](/test-suite-a/typealias-typealias) +[Packages](/) > [test-suite-a](/test-suite-a/) > [TypeAlias](/test-suite-a/typealias-typealias) Test Type-Alias diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-b/foo-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-b/foo-interface.md index f9ee688664ba..294a9a5d8a9d 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-b/foo-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-b/foo-interface.md @@ -1,6 +1,6 @@ # Foo -[Packages](/) \> [test-suite-b](/test-suite-b/) \> [Foo](/test-suite-b/foo-interface) +[Packages](/) > [test-suite-b](/test-suite-b/) > [Foo](/test-suite-b/foo-interface) Bar diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-b/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-b/index.md index 762c5eedcbdb..4c8308099092 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-b/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/default-config/test-suite-b/index.md @@ -1,6 +1,6 @@ # test-suite-b -[Packages](/) \> [test-suite-b](/test-suite-b/) +[Packages](/) > [test-suite-b](/test-suite-b/) ## Interfaces diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/flat-config/test-suite-a.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/flat-config/test-suite-a.md index a26ba4cb2afd..3fdf178f79de 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/flat-config/test-suite-a.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/flat-config/test-suite-a.md @@ -1,4 +1,4 @@ -[Packages](docs/) \> [test-suite-a](docs/test-suite-a) +[Packages](docs/) > [test-suite-a](docs/test-suite-a) Test package @@ -71,7 +71,7 @@ const foo = bar; | Function | Alerts | Return Type | Description | | - | - | - | - | | [testFunctionReturningInlineType()](docs/test-suite-a#testfunctionreturninginlinetype-function) | | { foo: number; bar: [TestEnum](docs/test-suite-a#testenum-enum); } | Test function that returns an inline type | -| [testFunctionReturningIntersectionType()](docs/test-suite-a#testfunctionreturningintersectiontype-function) | `Deprecated` | [TestEmptyInterface](docs/test-suite-a#testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](docs/test-suite-a#testinterfacewithtypeparameter-interface)\ | Test function that returns an inline type | +| [testFunctionReturningIntersectionType()](docs/test-suite-a#testfunctionreturningintersectiontype-function) | `Deprecated` | [TestEmptyInterface](docs/test-suite-a#testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](docs/test-suite-a#testinterfacewithtypeparameter-interface)\ | Test function that returns an inline type | | [testFunctionReturningUnionType()](docs/test-suite-a#testfunctionreturninguniontype-function) | | string \| [TestInterface](docs/test-suite-a#testinterface-interface) | Test function that returns an inline type | # Variables @@ -125,7 +125,7 @@ Here are some remarks about the interface | Property | Modifiers | Type | Description | | - | - | - | - | -| [testClassEventProperty](docs/test-suite-a#testinterface-testclasseventproperty-propertysignature) | `readonly` | () =\> void | Test interface event property | +| [testClassEventProperty](docs/test-suite-a#testinterface-testclasseventproperty-propertysignature) | `readonly` | () => void | Test interface event property | ### Properties @@ -147,8 +147,8 @@ Here are some remarks about the interface | CallSignature | Description | | - | - | -| [(event: 'testCallSignature', listener: (input: unknown) =\> void): any](docs/test-suite-a#testinterface-_call_-callsignature) | Test interface event call signature | -| [(event: 'anotherTestCallSignature', listener: (input: number) =\> string): number](docs/test-suite-a#testinterface-_call__1-callsignature) | Another example call signature | +| [(event: 'testCallSignature', listener: (input: unknown) => void): any](docs/test-suite-a#testinterface-_call_-callsignature) | Test interface event call signature | +| [(event: 'anotherTestCallSignature', listener: (input: number) => string): number](docs/test-suite-a#testinterface-_call__1-callsignature) | Another example call signature | ### Constructor Details @@ -178,7 +178,7 @@ Test interface event property readonly testClassEventProperty: () => void; ``` -**Type**: () =\> void +**Type**: () => void ##### Remarks {#testclasseventproperty-remarks} @@ -267,7 +267,7 @@ Here are some remarks about the method ### Call Signature Details -#### (event: 'testCallSignature', listener: (input: unknown) =\> void): any {#testinterface-\_call\_-callsignature} +#### (event: 'testCallSignature', listener: (input: unknown) => void): any {#testinterface-\_call\_-callsignature} Test interface event call signature @@ -281,7 +281,7 @@ Test interface event call signature Here are some remarks about the event call signature -#### (event: 'anotherTestCallSignature', listener: (input: number) =\> string): number {#testinterface-\_call\_\_1-callsignature} +#### (event: 'anotherTestCallSignature', listener: (input: number) => string): number {#testinterface-\_call\_\_1-callsignature} Another example call signature @@ -315,7 +315,7 @@ Test interface that extends other interfaces export interface TestInterfaceExtendingOtherInterfaces extends TestInterface, TestMappedType, TestInterfaceWithTypeParameter ``` -**Extends**: [TestInterface](docs/test-suite-a#testinterface-interface), [TestMappedType](docs/test-suite-a#testmappedtype-typealias), [TestInterfaceWithTypeParameter](docs/test-suite-a#testinterfacewithtypeparameter-interface)\ +**Extends**: [TestInterface](docs/test-suite-a#testinterface-interface), [TestMappedType](docs/test-suite-a#testmappedtype-typealias), [TestInterfaceWithTypeParameter](docs/test-suite-a#testinterfacewithtypeparameter-interface)\ ### Remarks {#testinterfaceextendingotherinterfaces-remarks} @@ -594,7 +594,7 @@ Here are some remarks about the class | Property | Type | Description | | - | - | - | -| [testClassStaticProperty](docs/test-suite-a#testclass-testclassstaticproperty-property) | (foo: number) =\> string | Test static class property | +| [testClassStaticProperty](docs/test-suite-a#testclass-testclassstaticproperty-property) | (foo: number) => string | Test static class property | ### Static Methods @@ -606,7 +606,7 @@ Here are some remarks about the class | Property | Modifiers | Type | Description | | - | - | - | - | -| [testClassEventProperty](docs/test-suite-a#testclass-testclasseventproperty-property) | `readonly` | () =\> void | Test class event property | +| [testClassEventProperty](docs/test-suite-a#testclass-testclasseventproperty-property) | `readonly` | () => void | Test class event property | ### Properties @@ -647,7 +647,7 @@ Here are some remarks about the constructor | privateProperty | number | See [TestAbstractClass](docs/test-suite-a#testabstractclass-class)'s constructor. | | protectedProperty | [TestEnum](docs/test-suite-a#testenum-enum) |

Some notes about the parameter.

See protectedProperty.

| | testClassProperty | TTypeParameterB | See [testClassProperty](docs/test-suite-a#testclass-testclassproperty-property). | -| testClassEventProperty | () =\> void | See [testClassEventProperty](docs/test-suite-a#testclass-testclasseventproperty-property). | +| testClassEventProperty | () => void | See [testClassEventProperty](docs/test-suite-a#testclass-testclasseventproperty-property). | ### Event Details @@ -661,7 +661,7 @@ Test class event property readonly testClassEventProperty: () => void; ``` -**Type**: () =\> void +**Type**: () => void ##### Remarks {#testclasseventproperty-remarks} @@ -725,7 +725,7 @@ Test static class property static testClassStaticProperty: (foo: number) => string; ``` -**Type**: (foo: number) =\> string +**Type**: (foo: number) => string ### Method Details @@ -966,7 +966,7 @@ export declare function testFunctionReturningIntersectionType(): TestEmptyInterf an intersection type -**Return type**: [TestEmptyInterface](docs/test-suite-a#testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](docs/test-suite-a#testinterfacewithtypeparameter-interface)\ +**Return type**: [TestEmptyInterface](docs/test-suite-a#testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](docs/test-suite-a#testinterfacewithtypeparameter-interface)\ ## testFunctionReturningUnionType {#testfunctionreturninguniontype-function} @@ -1181,7 +1181,7 @@ class TestClass | Method | Return Type | Description | | - | - | - | -| [testClassMethod(testParameter)](docs/test-suite-a#testnamespace-testclass-testclassmethod-method) | Promise\ | Test class method | +| [testClassMethod(testParameter)](docs/test-suite-a#testnamespace-testclass-testclassmethod-method) | Promise\ | Test class method | ##### Constructor Details @@ -1243,7 +1243,7 @@ testClassMethod(testParameter: string): Promise; A Promise -**Return type**: Promise\ +**Return type**: Promise\ **Throws** diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/flat-config/test-suite-b.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/flat-config/test-suite-b.md index 6830c90bd037..c6ba28df01cb 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/flat-config/test-suite-b.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/flat-config/test-suite-b.md @@ -1,4 +1,4 @@ -[Packages](docs/) \> [test-suite-b](docs/test-suite-b) +[Packages](docs/) > [test-suite-b](docs/test-suite-b) # Interfaces diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/index.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/index.md index 8c9672d2574e..39ac0d1f6f16 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/index.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/index.md @@ -71,7 +71,7 @@ const foo = bar; | Function | Alerts | Return Type | Description | | - | - | - | - | | [testFunctionReturningInlineType()](docs/test-suite-a/testfunctionreturninginlinetype-function) | | { foo: number; bar: [TestEnum](docs/test-suite-a/testenum-enum); } | Test function that returns an inline type | -| [testFunctionReturningIntersectionType()](docs/test-suite-a/testfunctionreturningintersectiontype-function) | `Deprecated` | [TestEmptyInterface](docs/test-suite-a/testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](docs/test-suite-a/testinterfacewithtypeparameter-interface)\ | Test function that returns an inline type | +| [testFunctionReturningIntersectionType()](docs/test-suite-a/testfunctionreturningintersectiontype-function) | `Deprecated` | [TestEmptyInterface](docs/test-suite-a/testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](docs/test-suite-a/testinterfacewithtypeparameter-interface)\ | Test function that returns an inline type | | [testFunctionReturningUnionType()](docs/test-suite-a/testfunctionreturninguniontype-function) | | string \| [TestInterface](docs/test-suite-a/testinterface-interface) | Test function that returns an inline type | ### Variables diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-_constructor_-constructor.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-_constructor_-constructor.md index 013337564f99..64a3b51a4fc1 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-_constructor_-constructor.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-_constructor_-constructor.md @@ -19,4 +19,4 @@ Here are some remarks about the constructor | privateProperty | number | See [TestAbstractClass](docs/test-suite-a/testabstractclass-class)'s constructor. | | protectedProperty | [TestEnum](docs/test-suite-a/testenum-enum) |

Some notes about the parameter.

See protectedProperty.

| | testClassProperty | TTypeParameterB | See [testClassProperty](docs/test-suite-a/testclass-testclassproperty-property). | -| testClassEventProperty | () =\> void | See [testClassEventProperty](docs/test-suite-a/testclass-testclasseventproperty-property). | +| testClassEventProperty | () => void | See [testClassEventProperty](docs/test-suite-a/testclass-testclasseventproperty-property). | diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-class.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-class.md index 03cc01cefe60..619d3b18f9c6 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-class.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-class.md @@ -31,7 +31,7 @@ Here are some remarks about the class | Property | Type | Description | | - | - | - | -| [testClassStaticProperty](docs/test-suite-a/testclass-testclassstaticproperty-property) | (foo: number) =\> string | Test static class property | +| [testClassStaticProperty](docs/test-suite-a/testclass-testclassstaticproperty-property) | (foo: number) => string | Test static class property | ### Static Methods @@ -43,7 +43,7 @@ Here are some remarks about the class | Property | Modifiers | Type | Description | | - | - | - | - | -| [testClassEventProperty](docs/test-suite-a/testclass-testclasseventproperty-property) | `readonly` | () =\> void | Test class event property | +| [testClassEventProperty](docs/test-suite-a/testclass-testclasseventproperty-property) | `readonly` | () => void | Test class event property | ### Properties diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-testclasseventproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-testclasseventproperty-property.md index af62df70be88..7180fda91f05 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-testclasseventproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-testclasseventproperty-property.md @@ -8,7 +8,7 @@ Test class event property readonly testClassEventProperty: () => void; ``` -**Type**: () =\> void +**Type**: () => void ### Remarks {#testclasseventproperty-remarks} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-testclassstaticproperty-property.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-testclassstaticproperty-property.md index 59a8f5e959b1..236dfbe1b089 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-testclassstaticproperty-property.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testclass-testclassstaticproperty-property.md @@ -8,4 +8,4 @@ Test static class property static testClassStaticProperty: (foo: number) => string; ``` -**Type**: (foo: number) =\> string +**Type**: (foo: number) => string diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testfunctionreturningintersectiontype-function.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testfunctionreturningintersectiontype-function.md index 0a858fced0d0..516f9d716e02 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testfunctionreturningintersectiontype-function.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testfunctionreturningintersectiontype-function.md @@ -16,4 +16,4 @@ export declare function testFunctionReturningIntersectionType(): TestEmptyInterf an intersection type -**Return type**: [TestEmptyInterface](docs/test-suite-a/testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](docs/test-suite-a/testinterfacewithtypeparameter-interface)\ +**Return type**: [TestEmptyInterface](docs/test-suite-a/testemptyinterface-interface) \& [TestInterfaceWithTypeParameter](docs/test-suite-a/testinterfacewithtypeparameter-interface)\ diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-_call_-callsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-_call_-callsignature.md index 1e51bea68aa4..4d73de00b404 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-_call_-callsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-_call_-callsignature.md @@ -1,4 +1,4 @@ -## (event: 'testCallSignature', listener: (input: unknown) =\> void): any +## (event: 'testCallSignature', listener: (input: unknown) => void): any Test interface event call signature diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-_call__1-callsignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-_call__1-callsignature.md index d34c0596f0bc..fcb821233f10 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-_call__1-callsignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-_call__1-callsignature.md @@ -1,4 +1,4 @@ -## (event: 'anotherTestCallSignature', listener: (input: number) =\> string): number +## (event: 'anotherTestCallSignature', listener: (input: number) => string): number Another example call signature diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-interface.md index 723be9caec15..d5ccdf9a43f4 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-interface.md @@ -22,7 +22,7 @@ Here are some remarks about the interface | Property | Modifiers | Type | Description | | - | - | - | - | -| [testClassEventProperty](docs/test-suite-a/testinterface-testclasseventproperty-propertysignature) | `readonly` | () =\> void | Test interface event property | +| [testClassEventProperty](docs/test-suite-a/testinterface-testclasseventproperty-propertysignature) | `readonly` | () => void | Test interface event property | ### Properties @@ -44,8 +44,8 @@ Here are some remarks about the interface | CallSignature | Description | | - | - | -| [(event: 'testCallSignature', listener: (input: unknown) =\> void): any](docs/test-suite-a/testinterface-_call_-callsignature) | Test interface event call signature | -| [(event: 'anotherTestCallSignature', listener: (input: number) =\> string): number](docs/test-suite-a/testinterface-_call__1-callsignature) | Another example call signature | +| [(event: 'testCallSignature', listener: (input: unknown) => void): any](docs/test-suite-a/testinterface-_call_-callsignature) | Test interface event call signature | +| [(event: 'anotherTestCallSignature', listener: (input: number) => string): number](docs/test-suite-a/testinterface-_call__1-callsignature) | Another example call signature | ### See Also {#testinterface-see-also} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-testclasseventproperty-propertysignature.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-testclasseventproperty-propertysignature.md index 5ac8bf3df4d9..57859860d4b1 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-testclasseventproperty-propertysignature.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterface-testclasseventproperty-propertysignature.md @@ -8,7 +8,7 @@ Test interface event property readonly testClassEventProperty: () => void; ``` -**Type**: () =\> void +**Type**: () => void ### Remarks {#testclasseventproperty-remarks} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterfaceextendingotherinterfaces-interface.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterfaceextendingotherinterfaces-interface.md index 3248f989e62e..2dbedf916a90 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterfaceextendingotherinterfaces-interface.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testinterfaceextendingotherinterfaces-interface.md @@ -8,7 +8,7 @@ Test interface that extends other interfaces export interface TestInterfaceExtendingOtherInterfaces extends TestInterface, TestMappedType, TestInterfaceWithTypeParameter ``` -**Extends**: [TestInterface](docs/test-suite-a/testinterface-interface), [TestMappedType](docs/test-suite-a/testmappedtype-typealias), [TestInterfaceWithTypeParameter](docs/test-suite-a/testinterfacewithtypeparameter-interface)\ +**Extends**: [TestInterface](docs/test-suite-a/testinterface-interface), [TestMappedType](docs/test-suite-a/testmappedtype-typealias), [TestInterfaceWithTypeParameter](docs/test-suite-a/testinterfacewithtypeparameter-interface)\ ### Remarks {#testinterfaceextendingotherinterfaces-remarks} diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testnamespace-testclass-class.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testnamespace-testclass-class.md index d56b11f204a7..fe6ddaf05400 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testnamespace-testclass-class.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testnamespace-testclass-class.md @@ -24,4 +24,4 @@ class TestClass | Method | Return Type | Description | | - | - | - | -| [testClassMethod(testParameter)](docs/test-suite-a/testnamespace-testclass-testclassmethod-method) | Promise\ | Test class method | +| [testClassMethod(testParameter)](docs/test-suite-a/testnamespace-testclass-testclassmethod-method) | Promise\ | Test class method | diff --git a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testnamespace-testclass-testclassmethod-method.md b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testnamespace-testclass-testclassmethod-method.md index e6d3dbd0dbef..1d129605eea3 100644 --- a/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testnamespace-testclass-testclassmethod-method.md +++ b/tools/api-markdown-documenter/src/test/snapshots/markdown/simple-suite-test/sparse-config/test-suite-a/testnamespace-testclass-testclassmethod-method.md @@ -18,7 +18,7 @@ testClassMethod(testParameter: string): Promise; A Promise -**Return type**: Promise\ +**Return type**: Promise\ ### Throws {#testclassmethod-throws}