• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/**
2 * Copyright (c) 2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16export { ContactRepository } from './src/main/ets/repo/ContactRepository'
17
18export { DataItem } from './src/main/ets/entity/DataItem'
19
20export { Data } from './src/main/ets/contract/Data'
21export { DataItemType } from './src/main/ets/contract/DataType'
22export { RawContacts } from './src/main/ets/contract/RawContacts'
23export { Contacts } from './src/main/ets/contract/Contacts'
24
25export { Phone } from './src/main/ets/contract/Phone'
26export { Email } from './src/main/ets/contract/Email'
27export { House } from './src/main/ets/contract/House'
28export { Birthday } from './src/main/ets/contract/Birthday'
29export { Aim } from './src/main/ets/contract/Aim'
30export { Im } from './src/main/ets/contract/Im'
31export { StructuredPostal } from './src/main/ets/contract/StructuredPostal'
32export { Event } from './src/main/ets/contract/Event'
33export { Relation } from './src/main/ets/contract/Relation'
34