Skip to content

Commit

Permalink
Merge f53b50a into 911af0b
Browse files Browse the repository at this point in the history
  • Loading branch information
keithlayne committed Jul 16, 2020
2 parents 911af0b + f53b50a commit 11a60bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/record.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type RecordStaticType<
? { readonly [K in keyof O]: Static<O[K]> }
: { [K in keyof O]: Static<O[K]> };

interface InternalRecord<
export interface InternalRecord<
O extends { [_: string]: Runtype },
Part extends boolean,
RO extends boolean
Expand Down Expand Up @@ -43,7 +43,7 @@ export type Partial<O extends { [_: string]: Runtype }, RO extends boolean> = In
/**
* Construct a record runtype from runtypes for its values.
*/
function InternalRecord<
export function InternalRecord<
O extends { [_: string]: Runtype },
Part extends boolean,
RO extends boolean
Expand Down

0 comments on commit 11a60bc

Please sign in to comment.