Skip to content

Commit

Permalink
fix new lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmayer committed Feb 2, 2023
1 parent fcff0c1 commit c3ccd26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/definitions/person.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export type PersonDefinitions = LocaleEntry<{
/**
* A weighted list of patterns used to generate names.
*/
name: { value: string; weight: number }[];
name: Array<{ value: string; weight: number }>;

bio_patterns?: string[];

Expand Down

0 comments on commit c3ccd26

Please sign in to comment.