Socialify

Folder ..

Viewing index.ts
15 lines (13 loc) • 347.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
import type { LocaleDefinition } from '../..';
import address from './address';
import cell_phone from './cell_phone';
import internet from './internet';
import phone_number from './phone_number';

const en_GB: LocaleDefinition = {
  title: 'English (Great Britain)',
  address,
  cell_phone,
  internet,
  phone_number,
};

export default en_GB;