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 182bd31 commit e32cd0a
Show file tree
Hide file tree
Showing 30 changed files with 2,441 additions and 1,499 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"
}
2 changes: 1 addition & 1 deletion docs/modules/At/Record.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Added in v1.7.0
**Signature**

```ts
export function atRecord<A = never>(): At<Record<string, A>, string, Option<A>> { ... }
export declare function atRecord<A = never>(): At<Record<string, A>, string, Option<A>>
```

Added in v1.7.0
2 changes: 1 addition & 1 deletion docs/modules/At/Set.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Added in v1.2.0
**Signature**

```ts
export function atSet<A = never>(E: Eq<A>): At<Set<A>, A, boolean> { ... }
export declare function atSet<A = never>(E: Eq<A>): At<Set<A>, A, boolean>
```

Added in v1.2.0
4 changes: 2 additions & 2 deletions docs/modules/Either.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Added in v1.6.0
**Signature**

```ts
export const _left = <L, A>(): Prism<Either<L, A>, L> => ...
export declare const _left: <L, A>() => Prism<Either<L, A>, L>
```
Added in v1.6.0
Expand All @@ -32,7 +32,7 @@ Added in v1.6.0
**Signature**
```ts
export const _right = <L, A>(): Prism<Either<L, A>, A> => ...
export declare const _right: <L, A>() => Prism<Either<L, A>, A>
```
Added in v1.6.0
2 changes: 1 addition & 1 deletion docs/modules/Index/Array.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Added in v1.2.0
**Signature**

```ts
export function indexArray<A = never>(): Index<Array<A>, number, A> { ... }
export declare function indexArray<A = never>(): Index<Array<A>, number, A>
```

Added in v1.2.0
2 changes: 1 addition & 1 deletion docs/modules/Index/NonEmptyArray.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Added in v1.5.0
**Signature**

```ts
export function indexNonEmptyArray<A = never>(): Index<NonEmptyArray<A>, number, A> { ... }
export declare function indexNonEmptyArray<A = never>(): Index<NonEmptyArray<A>, number, A>
```

Added in v1.5.0
2 changes: 1 addition & 1 deletion docs/modules/Index/Record.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Added in v1.7.0
**Signature**

```ts
export function indexRecord<A = never>(): Index<Record<string, A>, string, A> { ... }
export declare function indexRecord<A = never>(): Index<Record<string, A>, string, A>
```

Added in v1.7.0
Loading

0 comments on commit e32cd0a

Please sign in to comment.