Skip to content

Commit

Permalink
upgrade to latest: docs-ts, prettier, typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Apr 4, 2020
1 parent 2813cc5 commit 047316f
Show file tree
Hide file tree
Showing 19 changed files with 1,889 additions and 1,376 deletions.
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"semi": false,
"singleQuote": true,
"printWidth": 120
"printWidth": 120,
"trailingComma": "none"
}
6 changes: 3 additions & 3 deletions docs/modules/PathReporter.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Added in v1.0.0
**Signature**

```ts
export const PathReporter: Reporter<Array<string>> = ...
export declare const PathReporter: Reporter<string[]>
```
Added in v1.0.0
Expand All @@ -33,7 +33,7 @@ Added in v1.0.0
**Signature**
```ts
export function failure(es: Array<ValidationError>): Array<string> { ... }
export declare function failure(es: Array<ValidationError>): Array<string>
```

Added in v1.0.0
Expand All @@ -43,7 +43,7 @@ Added in v1.0.0
**Signature**

```ts
export function success(): Array<string> { ... }
export declare function success(): Array<string>
```

Added in v1.0.0
Loading

0 comments on commit 047316f

Please sign in to comment.