Skip to content

Commit

Permalink
fix: add tuple to locale object (#2100)
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsower authored Sep 9, 2023
1 parent 13ce359 commit 809b55a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/locale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export interface LocaleObject {
boolean?: BooleanLocale;
object?: ObjectLocale;
array?: ArrayLocale;
tuple?: TupleLocale;
}

export let mixed: Required<MixedLocale> = {
Expand Down Expand Up @@ -160,4 +161,5 @@ export default Object.assign(Object.create(null), {
object,
array,
boolean,
tuple,
}) as LocaleObject;

0 comments on commit 809b55a

Please sign in to comment.