Skip to content

Commit 49bd9e1

Browse files
author
Brandon Scott
committed
0.3.6
1 parent 0fc84c2 commit 49bd9e1

29 files changed

+464
-464
lines changed

docs/README.md

Lines changed: 333 additions & 333 deletions
Large diffs are not rendered by default.

docs/classes/do.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ the Do.catch method takes a callback where the parameters are:
4545

4646
\+ **new Do**(`workload`: [AsyncWorkload](../README.md#asyncworkload)‹TReturnVal›): *[Do](do.md)*
4747

48-
*Defined in [src/utilities/do-try.ts:23](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L23)*
48+
*Defined in [src/utilities/do-try.ts:23](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L23)*
4949

5050
**Parameters:**
5151

@@ -61,15 +61,15 @@ Name | Type |
6161

6262
**promise**: *Promise‹TReturnVal›*
6363

64-
*Defined in [src/utilities/do-try.ts:19](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L19)*
64+
*Defined in [src/utilities/do-try.ts:19](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L19)*
6565

6666
## Methods
6767

6868
### catch
6969

7070
**catch**(`errorHandler`: [CatchResultHandler](../README.md#catchresulthandler)‹TResourceType›): *[Do](do.md)‹TResourceType, TReturnVal›*
7171

72-
*Defined in [src/utilities/do-try.ts:46](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L46)*
72+
*Defined in [src/utilities/do-try.ts:46](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L46)*
7373

7474
Handle errors from the workload.
7575
If errors are in the shape of a {ResultRecord},
@@ -93,7 +93,7 @@ ___
9393

9494
**finally**(`finallyHandler`: [FinallyHandler](../README.md#finallyhandler)): *[Do](do.md)‹TResourceType, TReturnVal›*
9595

96-
*Defined in [src/utilities/do-try.ts:75](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L75)*
96+
*Defined in [src/utilities/do-try.ts:75](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L75)*
9797

9898
Run some handler when the function completes, whether the
9999
catch() was hit or not.
@@ -114,7 +114,7 @@ ___
114114

115115
**getAwaiter**(): *Promise‹TReturnVal›*
116116

117-
*Defined in [src/utilities/do-try.ts:89](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L89)*
117+
*Defined in [src/utilities/do-try.ts:89](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L89)*
118118

119119
Awaits the internal promise being tracked by the Do instance,
120120
and returns the result. This way, you can await a Do.try
@@ -131,7 +131,7 @@ ___
131131

132132
**configure**(`config`: [DoTryConfig](../interfaces/dotryconfig.md)): *void*
133133

134-
*Defined in [src/utilities/do-try.ts:65](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L65)*
134+
*Defined in [src/utilities/do-try.ts:65](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L65)*
135135

136136
Sets the global configuration object for class {Do}
137137

@@ -149,7 +149,7 @@ ___
149149

150150
**try**<**TResourceType**, **TReturnVal**>(`workload`: [AsyncWorkload](../README.md#asyncworkload)‹TReturnVal›): *[Do](do.md)‹TResourceType, TReturnVal›*
151151

152-
*Defined in [src/utilities/do-try.ts:100](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L100)*
152+
*Defined in [src/utilities/do-try.ts:100](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L100)*
153153

154154
Static factory method for Do class.
155155
Start a workload (sync or async) that you can then
@@ -177,10 +177,10 @@ a new instance of Do
177177

178178
### **config**: *object*
179179

180-
*Defined in [src/utilities/do-try.ts:21](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L21)*
180+
*Defined in [src/utilities/do-try.ts:21](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L21)*
181181

182182
### defaultErrorHandler
183183

184184
**defaultErrorHandler**: *undefined* = undefined
185185

186-
*Defined in [src/utilities/do-try.ts:22](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L22)*
186+
*Defined in [src/utilities/do-try.ts:22](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L22)*

docs/classes/dosync.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
\+ **new DoSync**(`workload`: [SyncWorkload](../README.md#syncworkload)‹TReturnVal›): *[DoSync](dosync.md)*
4444

45-
*Defined in [src/utilities/do-try.ts:120](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L120)*
45+
*Defined in [src/utilities/do-try.ts:120](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L120)*
4646

4747
**Parameters:**
4848

@@ -58,31 +58,31 @@ Name | Type |
5858

5959
**catchHandler**? : *undefined | function*
6060

61-
*Defined in [src/utilities/do-try.ts:115](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L115)*
61+
*Defined in [src/utilities/do-try.ts:115](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L115)*
6262

6363
___
6464

6565
### `Private` `Optional` finallyHandler
6666

6767
**finallyHandler**? : *[FinallyHandler](../README.md#finallyhandler)*
6868

69-
*Defined in [src/utilities/do-try.ts:116](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L116)*
69+
*Defined in [src/utilities/do-try.ts:116](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L116)*
7070

7171
___
7272

7373
### `Private` `Readonly` workload
7474

7575
**workload**: *[SyncWorkload](../README.md#syncworkload)‹TReturnVal›*
7676

77-
*Defined in [src/utilities/do-try.ts:114](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L114)*
77+
*Defined in [src/utilities/do-try.ts:114](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L114)*
7878

7979
## Methods
8080

8181
### catch
8282

8383
**catch**(`errorHandler`: [CatchResultHandler](../README.md#catchresulthandler)‹TResourceType›): *[DoSync](dosync.md)‹TResourceType, TReturnVal›*
8484

85-
*Defined in [src/utilities/do-try.ts:134](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L134)*
85+
*Defined in [src/utilities/do-try.ts:134](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L134)*
8686

8787
Add a catch handler to the DoSync call chain.
8888
If errors are in the shape of a {ResultRecord},
@@ -104,7 +104,7 @@ ___
104104

105105
**execute**(): *TReturnVal | undefined*
106106

107-
*Defined in [src/utilities/do-try.ts:162](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L162)*
107+
*Defined in [src/utilities/do-try.ts:162](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L162)*
108108

109109
Execute the entire DoSync call chain. For the synchronous version, i.e. DoSync,
110110
you must manually call .execute() for the call chain to be executed.
@@ -119,7 +119,7 @@ ___
119119

120120
**finally**(`finallyHandler`: [FinallyHandler](../README.md#finallyhandler)): *[DoSync](dosync.md)‹TResourceType, TReturnVal›*
121121

122-
*Defined in [src/utilities/do-try.ts:185](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L185)*
122+
*Defined in [src/utilities/do-try.ts:185](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L185)*
123123

124124
Run some handler when the function completes, whether the
125125
catch() was hit or not.
@@ -140,7 +140,7 @@ ___
140140

141141
**configure**(`config`: [DoTryConfig](../interfaces/dotryconfig.md)): *void*
142142

143-
*Defined in [src/utilities/do-try.ts:153](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L153)*
143+
*Defined in [src/utilities/do-try.ts:153](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L153)*
144144

145145
Sets the global configuration for class {DySync}.
146146

@@ -158,7 +158,7 @@ ___
158158

159159
**try**<**TResourceType**, **TReturnVal**>(`workload`: [SyncWorkload](../README.md#syncworkload)‹TReturnVal›): *[DoSync](dosync.md)‹TResourceType, TReturnVal›*
160160

161-
*Defined in [src/utilities/do-try.ts:197](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L197)*
161+
*Defined in [src/utilities/do-try.ts:197](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L197)*
162162

163163
Static factory method for DoSync. Creates a new DoSync
164164
with the given workload.
@@ -183,10 +183,10 @@ Name | Type | Description |
183183

184184
### **config**: *object*
185185

186-
*Defined in [src/utilities/do-try.ts:118](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L118)*
186+
*Defined in [src/utilities/do-try.ts:118](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L118)*
187187

188188
### defaultErrorHandler
189189

190190
**defaultErrorHandler**: *undefined* = undefined
191191

192-
*Defined in [src/utilities/do-try.ts:119](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/utilities/do-try.ts#L119)*
192+
*Defined in [src/utilities/do-try.ts:119](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/utilities/do-try.ts#L119)*

docs/classes/resulterrorrecord.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ The name provided to `Record(values, name)` can be accessed with
157157

158158
\+ **new ResultErrorRecord**(`params?`: [ResultError](../interfaces/resulterror.md)): *[ResultErrorRecord](resulterrorrecord.md)*
159159

160-
*Defined in [src/view-models/result-error-record.ts:11](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-error-record.ts#L11)*
160+
*Defined in [src/view-models/result-error-record.ts:11](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-error-record.ts#L11)*
161161

162162
**Parameters:**
163163

@@ -293,7 +293,7 @@ ___
293293

294294
**fullError**(): *string*
295295

296-
*Defined in [src/view-models/result-error-record.ts:40](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-error-record.ts#L40)*
296+
*Defined in [src/view-models/result-error-record.ts:40](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-error-record.ts#L40)*
297297

298298
Display error key and message
299299

@@ -759,7 +759,7 @@ ___
759759

760760
**with**(`values`: Partial‹[ResultError](../interfaces/resulterror.md)›): *[ResultErrorRecord](resulterrorrecord.md)*
761761

762-
*Defined in [src/view-models/result-error-record.ts:51](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-error-record.ts#L51)*
762+
*Defined in [src/view-models/result-error-record.ts:51](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-error-record.ts#L51)*
763763

764764
Merges new values into the record and returns a new instance.
765765

docs/classes/resultrecord.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ The name provided to `Record(values, name)` can be accessed with
168168

169169
\+ **new ResultRecord**(`params?`: [Result](../interfaces/result.md)‹T›): *[ResultRecord](resultrecord.md)*
170170

171-
*Defined in [src/view-models/result-record.ts:13](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L13)*
171+
*Defined in [src/view-models/result-record.ts:13](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L13)*
172172

173173
**Parameters:**
174174

@@ -196,7 +196,7 @@ ___
196196

197197
**_addErrorByType**(`key`: string, `message`: string, `errorType`: [ErrorType](../enums/errortype.md)): *[ResultRecord](resultrecord.md)‹T›*
198198

199-
*Defined in [src/view-models/result-record.ts:151](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L151)*
199+
*Defined in [src/view-models/result-record.ts:151](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L151)*
200200

201201
**Parameters:**
202202

@@ -214,7 +214,7 @@ ___
214214

215215
**addError**(`key`: string, `message`: string): *[ResultRecord](resultrecord.md)‹T›*
216216

217-
*Defined in [src/view-models/result-record.ts:48](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L48)*
217+
*Defined in [src/view-models/result-record.ts:48](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L48)*
218218

219219
Adds a new error with the supplied details and returns a new ResultRecord
220220

@@ -233,7 +233,7 @@ ___
233233

234234
**addValidationError**(`key`: string, `message`: string): *[ResultRecord](resultrecord.md)‹T›*
235235

236-
*Defined in [src/view-models/result-record.ts:58](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L58)*
236+
*Defined in [src/view-models/result-record.ts:58](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L58)*
237237

238238
Adds a new validation error with the supplied details and returns a new ResultRecord
239239

@@ -342,7 +342,7 @@ ___
342342

343343
**doesNotHaveErrors**(): *boolean*
344344

345-
*Defined in [src/view-models/result-record.ts:65](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L65)*
345+
*Defined in [src/view-models/result-record.ts:65](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L65)*
346346

347347
Evaluates whether there are any errors on the result
348348

@@ -372,7 +372,7 @@ ___
372372

373373
**errorCount**(): *number*
374374

375-
*Defined in [src/view-models/result-record.ts:72](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L72)*
375+
*Defined in [src/view-models/result-record.ts:72](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L72)*
376376

377377
Returns total number of errors
378378

@@ -433,7 +433,7 @@ ___
433433

434434
**getErrorMessageFor**(`key`: string): *string | undefined*
435435

436-
*Defined in [src/view-models/result-record.ts:84](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L84)*
436+
*Defined in [src/view-models/result-record.ts:84](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L84)*
437437

438438
Returns an error message for a given key
439439

@@ -487,7 +487,7 @@ ___
487487

488488
**hasErrorFor**(...`keys`: string[]): *boolean*
489489

490-
*Defined in [src/view-models/result-record.ts:92](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L92)*
490+
*Defined in [src/view-models/result-record.ts:92](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L92)*
491491

492492
Determines if the result contains an error for the supplied key(s)
493493

@@ -505,7 +505,7 @@ ___
505505

506506
**hasErrors**(): *boolean*
507507

508-
*Defined in [src/view-models/result-record.ts:105](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L105)*
508+
*Defined in [src/view-models/result-record.ts:105](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L105)*
509509

510510
Evaluates whether there are any errors on the result
511511

@@ -547,7 +547,7 @@ ___
547547

548548
**listErrorMessages**(): *string[]*
549549

550-
*Defined in [src/view-models/result-record.ts:123](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L123)*
550+
*Defined in [src/view-models/result-record.ts:123](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L123)*
551551

552552
Map all error messages into a simple string array.
553553

@@ -559,7 +559,7 @@ ___
559559

560560
**listErrors**(): *string[]*
561561

562-
*Defined in [src/view-models/result-record.ts:112](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L112)*
562+
*Defined in [src/view-models/result-record.ts:112](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L112)*
563563

564564
Map all errors into simple string array
565565

@@ -910,7 +910,7 @@ ___
910910

911911
**with**(`values`: Partial‹[Result](../interfaces/result.md)‹T››): *[ResultRecord](resultrecord.md)‹T›*
912912

913-
*Defined in [src/view-models/result-record.ts:141](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/view-models/result-record.ts#L141)*
913+
*Defined in [src/view-models/result-record.ts:141](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/view-models/result-record.ts#L141)*
914914

915915
Merges new values into the record and returns a new instance.
916916

docs/enums/anchortargettypes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@
1717

1818
**Blank**: = "_blank"
1919

20-
*Defined in [src/enumerations/anchor-target-types.ts:2](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/enumerations/anchor-target-types.ts#L2)*
20+
*Defined in [src/enumerations/anchor-target-types.ts:2](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/enumerations/anchor-target-types.ts#L2)*
2121

2222
___
2323

2424
### Parent
2525

2626
**Parent**: = "_parent"
2727

28-
*Defined in [src/enumerations/anchor-target-types.ts:3](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/enumerations/anchor-target-types.ts#L3)*
28+
*Defined in [src/enumerations/anchor-target-types.ts:3](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/enumerations/anchor-target-types.ts#L3)*
2929

3030
___
3131

3232
### Self
3333

3434
**Self**: = "_self"
3535

36-
*Defined in [src/enumerations/anchor-target-types.ts:4](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/enumerations/anchor-target-types.ts#L4)*
36+
*Defined in [src/enumerations/anchor-target-types.ts:4](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/enumerations/anchor-target-types.ts#L4)*
3737

3838
___
3939

4040
### Top
4141

4242
**Top**: = "_top"
4343

44-
*Defined in [src/enumerations/anchor-target-types.ts:5](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/d084ed3/src/enumerations/anchor-target-types.ts#L5)*
44+
*Defined in [src/enumerations/anchor-target-types.ts:5](https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/blob/0fc84c2/src/enumerations/anchor-target-types.ts#L5)*

0 commit comments

Comments
 (0)