Skip to content

Commit

Permalink
fix conflicts caused by aftermath of #2058
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmayer committed May 1, 2023
1 parent e465e94 commit c5c56a4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/locales/ro_MD/date/index.ts
Expand Up @@ -2,11 +2,11 @@
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { DateDefinitions } from '../../..';
import type { DateDefinition } from '../../..';
import month from './month';
import weekday from './weekday';

const date: DateDefinitions = {
const date: DateDefinition = {
month,
weekday,
};
Expand Down
4 changes: 2 additions & 2 deletions src/locales/ro_MD/internet/index.ts
Expand Up @@ -2,11 +2,11 @@
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { InternetDefinitions } from '../../..';
import type { InternetDefinition } from '../../..';
import domain_suffix from './domain_suffix';
import free_email from './free_email';

const internet: InternetDefinitions = {
const internet: InternetDefinition = {
domain_suffix,
free_email,
};
Expand Down
4 changes: 2 additions & 2 deletions src/locales/ro_MD/location/index.ts
Expand Up @@ -2,7 +2,7 @@
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { LocationDefinitions } from '../../..';
import type { LocationDefinition } from '../../..';
import building_number from './building_number';
import city from './city';
import city_name from './city_name';
Expand All @@ -18,7 +18,7 @@ import street_name_part from './street_name_part';
import street_pattern from './street_pattern';
import street_prefix from './street_prefix';

const location: LocationDefinitions = {
const location: LocationDefinition = {
building_number,
city,
city_name,
Expand Down
4 changes: 2 additions & 2 deletions src/locales/ro_MD/metadata.ts
@@ -1,6 +1,6 @@
import type { PreBuiltMetadataDefinitionsForCountry } from '../../definitions/metadata';
import type { PreBuiltMetadataDefinitionForCountry } from '../../definitions/metadata';

const metadata: PreBuiltMetadataDefinitionsForCountry = {
const metadata: PreBuiltMetadataDefinitionForCountry = {
title: 'Romanian (Moldova)',
code: 'ro_MD',
country: 'MD',
Expand Down
4 changes: 2 additions & 2 deletions src/locales/ro_MD/person/index.ts
Expand Up @@ -2,7 +2,7 @@
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { PersonDefinitions } from '../../..';
import type { PersonDefinition } from '../../..';
import female_first_name from './female_first_name';
import female_prefix from './female_prefix';
import first_name from './first_name';
Expand All @@ -13,7 +13,7 @@ import name_ from './name';
import prefix from './prefix';
import suffix from './suffix';

const person: PersonDefinitions = {
const person: PersonDefinition = {
female_first_name,
female_prefix,
first_name,
Expand Down
4 changes: 2 additions & 2 deletions src/locales/ro_MD/phone_number/index.ts
Expand Up @@ -2,10 +2,10 @@
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { PhoneNumberDefinitions } from '../../..';
import type { PhoneNumberDefinition } from '../../..';
import formats from './formats';

const phone_number: PhoneNumberDefinitions = {
const phone_number: PhoneNumberDefinition = {
formats,
};

Expand Down

0 comments on commit c5c56a4

Please sign in to comment.