Socialify

Folder ..

Viewing index.ts
17 lines (15 loc) • 370.0 B

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

const de_CH: LocaleDefinition = {
  title: 'German (Switzerland)',
  address,
  company,
  internet,
  name,
  phone_number,
};

export default de_CH;