Files
Martin Bektchiev 1c0218ea15 feat(tns-platform-declarations): Generate iOS typings from iOS 12.1 SDK (#6693)
* feat(tns-platform-declarations): Generate iOS typings from iOS 12.1 SDK

* Instructions for generating iOS typescript definitions
* Refactor `typings-gen.sh` to use {N} CLI and generate fuller
metadata for the system libraries
* Automatically generate `ios.d.ts` wrapper
* Add interop pointers and references as alternatives
to `string` for `char*` args
(implemented in https://github.com/NativeScript/ios-runtime/pull/1022)

BREAKING CHANGE: Several enum values have changed because
    they have been wrongly generated.

    To migrate your app or plugin code use the new names of the
    following:
    *  enum NSUnderlineStyle:
        - `StyleNone` -> `None`
        - `StyleSingle` -> `Single`
        - `StyleThick` -> `Thick`
        - `StyleDouble` -> `Double`
     * enum AVAudioSessionErrorCode:
        - `CodeNone` -> `None`
        - `CodeMediaServicesFailed` -> `MediaServicesFailed`
        - `CodeIsBusy` -> `IsBusy`
        - `CodeIncompatibleCategory` -> `IncompatibleCategory`
        - `CodeCannotInterruptOthers` -> `CannotInterruptOthers`
        - `CodeMissingEntitlement` -> `MissingEntitlement`
        - `CodeSiriIsRecording` -> `SiriIsRecording`
        - `CodeCannotStartPlaying` -> `CannotStartPlaying`
        - `CodeCannotStartRecording` -> `CannotStartRecording`
        - `CodeBadParam` -> `BadParam`
        - `CodeResourceNotAvailable` -> `ResourceNotAvailable`
        - `CodeUnspecified` -> `Unspecified`

* fix(ui/text-base): Update NSUnderlineStyle.StyleSingle constant

After the typings regeneration its and several others' names have
changed to the expected `NSUnderlineStyle.Single`.

* fix(tns-platform-declarations): Restore deprecated enum values

In order to not introduce a breaking change in a patch version, we
are keeping `Style...` and `Code...` values that have been wrongly
generated till now. In the next major/minor release of the package
when the typings are regenerated we can safely remove them.

Revert to using the deprecated one's in `text-base.ios.ts` so that
the introduction of this breaking change doesn't slip in undetected.

* fix(application.ios): Directly call presetnNativeScriptApp

We've been using `performSelectorWithObject` but it's
declaration has been manually added. Moreover it's more
convenient to directly call the method.
2018-12-13 17:04:13 +02:00

989 lines
25 KiB
TypeScript

declare const enum CNAuthorizationStatus {
NotDetermined = 0,
Restricted = 1,
Denied = 2,
Authorized = 3
}
declare class CNContact extends NSObject implements NSCopying, NSItemProviderReading, NSItemProviderWriting, NSMutableCopying, NSSecureCoding {
static alloc(): CNContact; // inherited from NSObject
static comparatorForNameSortOrder(sortOrder: CNContactSortOrder): (p1: any, p2: any) => NSComparisonResult;
static descriptorForAllComparatorKeys(): CNKeyDescriptor;
static itemProviderVisibilityForRepresentationWithTypeIdentifier(typeIdentifier: string): NSItemProviderRepresentationVisibility;
static localizedStringForKey(key: string): string;
static new(): CNContact; // inherited from NSObject
static objectWithItemProviderDataTypeIdentifierError(data: NSData, typeIdentifier: string): CNContact;
static predicateForContactsInContainerWithIdentifier(containerIdentifier: string): NSPredicate;
static predicateForContactsInGroupWithIdentifier(groupIdentifier: string): NSPredicate;
static predicateForContactsMatchingEmailAddress(emailAddress: string): NSPredicate;
static predicateForContactsMatchingName(name: string): NSPredicate;
static predicateForContactsMatchingPhoneNumber(phoneNumber: CNPhoneNumber): NSPredicate;
static predicateForContactsWithIdentifiers(identifiers: NSArray<string> | string[]): NSPredicate;
readonly birthday: NSDateComponents;
readonly contactRelations: NSArray<CNLabeledValue<CNContactRelation>>;
readonly contactType: CNContactType;
readonly dates: NSArray<CNLabeledValue<NSDateComponents>>;
readonly departmentName: string;
readonly emailAddresses: NSArray<CNLabeledValue<string>>;
readonly familyName: string;
readonly givenName: string;
readonly identifier: string;
readonly imageData: NSData;
readonly imageDataAvailable: boolean;
readonly instantMessageAddresses: NSArray<CNLabeledValue<CNInstantMessageAddress>>;
readonly jobTitle: string;
readonly middleName: string;
readonly namePrefix: string;
readonly nameSuffix: string;
readonly nickname: string;
readonly nonGregorianBirthday: NSDateComponents;
readonly note: string;
readonly organizationName: string;
readonly phoneNumbers: NSArray<CNLabeledValue<CNPhoneNumber>>;
readonly phoneticFamilyName: string;
readonly phoneticGivenName: string;
readonly phoneticMiddleName: string;
readonly phoneticOrganizationName: string;
readonly postalAddresses: NSArray<CNLabeledValue<CNPostalAddress>>;
readonly previousFamilyName: string;
readonly socialProfiles: NSArray<CNLabeledValue<CNSocialProfile>>;
readonly thumbnailImageData: NSData;
readonly urlAddresses: NSArray<CNLabeledValue<string>>;
readonly debugDescription: string; // inherited from NSObjectProtocol
readonly description: string; // inherited from NSObjectProtocol
readonly hash: number; // inherited from NSObjectProtocol
readonly isProxy: boolean; // inherited from NSObjectProtocol
readonly superclass: typeof NSObject; // inherited from NSObjectProtocol
readonly writableTypeIdentifiersForItemProvider: NSArray<string>; // inherited from NSItemProviderWriting
readonly // inherited from NSObjectProtocol
static readonly readableTypeIdentifiersForItemProvider: NSArray<string>; // inherited from NSItemProviderReading
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
static readonly writableTypeIdentifiersForItemProvider: NSArray<string>; // inherited from NSItemProviderWriting
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
areKeysAvailable(keyDescriptors: NSArray<CNKeyDescriptor> | CNKeyDescriptor[]): boolean;
class(): typeof NSObject;
conformsToProtocol(aProtocol: any /* Protocol */): boolean;
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
isEqual(object: any): boolean;
isKeyAvailable(key: string): boolean;
isKindOfClass(aClass: typeof NSObject): boolean;
isMemberOfClass(aClass: typeof NSObject): boolean;
isUnifiedWithContactWithIdentifier(contactIdentifier: string): boolean;
itemProviderVisibilityForRepresentationWithTypeIdentifier(typeIdentifier: string): NSItemProviderRepresentationVisibility;
loadDataWithTypeIdentifierForItemProviderCompletionHandler(typeIdentifier: string, completionHandler: (p1: NSData, p2: NSError) => void): NSProgress;
mutableCopyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
performSelector(aSelector: string): any;
performSelectorWithObject(aSelector: string, object: any): any;
performSelectorWithObjectWithObject(aSelector: string, object1: any, object2: any): any;
respondsToSelector(aSelector: string): boolean;
retainCount(): number;
self(): this;
}
declare var CNContactBirthdayKey: string;
declare var CNContactDatesKey: string;
declare var CNContactDepartmentNameKey: string;
declare const enum CNContactDisplayNameOrder {
UserDefault = 0,
GivenNameFirst = 1,
FamilyNameFirst = 2
}
declare var CNContactEmailAddressesKey: string;
declare var CNContactFamilyNameKey: string;
declare class CNContactFetchRequest extends NSObject implements NSSecureCoding {
static alloc(): CNContactFetchRequest; // inherited from NSObject
static new(): CNContactFetchRequest; // inherited from NSObject
keysToFetch: NSArray<CNKeyDescriptor>;
mutableObjects: boolean;
predicate: NSPredicate;
sortOrder: CNContactSortOrder;
unifyResults: boolean;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
constructor(o: { keysToFetch: NSArray<CNKeyDescriptor> | CNKeyDescriptor[]; });
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
initWithKeysToFetch(keysToFetch: NSArray<CNKeyDescriptor> | CNKeyDescriptor[]): this;
}
declare class CNContactFormatter extends NSFormatter implements NSSecureCoding {
static alloc(): CNContactFormatter; // inherited from NSObject
static attributedStringFromContactStyleDefaultAttributes(contact: CNContact, style: CNContactFormatterStyle, attributes: NSDictionary<any, any>): NSAttributedString;
static delimiterForContact(contact: CNContact): string;
static descriptorForRequiredKeysForStyle(style: CNContactFormatterStyle): CNKeyDescriptor;
static nameOrderForContact(contact: CNContact): CNContactDisplayNameOrder;
static new(): CNContactFormatter; // inherited from NSObject
static stringFromContactStyle(contact: CNContact, style: CNContactFormatterStyle): string;
style: CNContactFormatterStyle;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
attributedStringFromContactDefaultAttributes(contact: CNContact, attributes: NSDictionary<any, any>): NSAttributedString;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
stringFromContact(contact: CNContact): string;
}
declare const enum CNContactFormatterStyle {
FullName = 0,
PhoneticFullName = 1
}
declare var CNContactGivenNameKey: string;
declare var CNContactIdentifierKey: string;
declare var CNContactImageDataAvailableKey: string;
declare var CNContactImageDataKey: string;
declare var CNContactInstantMessageAddressesKey: string;
declare var CNContactJobTitleKey: string;
declare var CNContactMiddleNameKey: string;
declare var CNContactNamePrefixKey: string;
declare var CNContactNameSuffixKey: string;
declare var CNContactNicknameKey: string;
declare var CNContactNonGregorianBirthdayKey: string;
declare var CNContactNoteKey: string;
declare var CNContactOrganizationNameKey: string;
declare var CNContactPhoneNumbersKey: string;
declare var CNContactPhoneticFamilyNameKey: string;
declare var CNContactPhoneticGivenNameKey: string;
declare var CNContactPhoneticMiddleNameKey: string;
declare var CNContactPhoneticOrganizationNameKey: string;
declare var CNContactPostalAddressesKey: string;
declare var CNContactPreviousFamilyNameKey: string;
declare class CNContactProperty extends NSObject implements NSCopying, NSSecureCoding {
static alloc(): CNContactProperty; // inherited from NSObject
static new(): CNContactProperty; // inherited from NSObject
readonly contact: CNContact;
readonly identifier: string;
readonly key: string;
readonly label: string;
readonly value: any;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
}
declare var CNContactPropertyAttribute: string;
declare var CNContactPropertyNotFetchedExceptionName: string;
declare class CNContactRelation extends NSObject implements NSCopying, NSSecureCoding {
static alloc(): CNContactRelation; // inherited from NSObject
static contactRelationWithName(name: string): CNContactRelation;
static new(): CNContactRelation; // inherited from NSObject
readonly name: string;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
constructor(o: { name: string; });
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
initWithName(name: string): this;
}
declare var CNContactRelationsKey: string;
declare var CNContactSocialProfilesKey: string;
declare const enum CNContactSortOrder {
None = 0,
UserDefault = 1,
GivenName = 2,
FamilyName = 3
}
declare class CNContactStore extends NSObject {
static alloc(): CNContactStore; // inherited from NSObject
static authorizationStatusForEntityType(entityType: CNEntityType): CNAuthorizationStatus;
static new(): CNContactStore; // inherited from NSObject
containersMatchingPredicateError(predicate: NSPredicate): NSArray<CNContainer>;
defaultContainerIdentifier(): string;
enumerateContactsWithFetchRequestErrorUsingBlock(fetchRequest: CNContactFetchRequest, error: interop.Pointer | interop.Reference<NSError>, block: (p1: CNContact, p2: interop.Pointer | interop.Reference<boolean>) => void): boolean;
executeSaveRequestError(saveRequest: CNSaveRequest): boolean;
groupsMatchingPredicateError(predicate: NSPredicate): NSArray<CNGroup>;
requestAccessForEntityTypeCompletionHandler(entityType: CNEntityType, completionHandler: (p1: boolean, p2: NSError) => void): void;
unifiedContactWithIdentifierKeysToFetchError(identifier: string, keys: NSArray<CNKeyDescriptor> | CNKeyDescriptor[]): CNContact;
unifiedContactsMatchingPredicateKeysToFetchError(predicate: NSPredicate, keys: NSArray<CNKeyDescriptor> | CNKeyDescriptor[]): NSArray<CNContact>;
}
declare var CNContactStoreDidChangeNotification: string;
declare var CNContactThumbnailImageDataKey: string;
declare const enum CNContactType {
Person = 0,
Organization = 1
}
declare var CNContactTypeKey: string;
declare var CNContactUrlAddressesKey: string;
declare class CNContactVCardSerialization extends NSObject {
static alloc(): CNContactVCardSerialization; // inherited from NSObject
static contactsWithDataError(data: NSData): NSArray<CNContact>;
static dataWithContactsError(contacts: NSArray<CNContact> | CNContact[]): NSData;
static descriptorForRequiredKeys(): CNKeyDescriptor;
static new(): CNContactVCardSerialization; // inherited from NSObject
}
declare class CNContactsUserDefaults extends NSObject {
static alloc(): CNContactsUserDefaults; // inherited from NSObject
static new(): CNContactsUserDefaults; // inherited from NSObject
static sharedDefaults(): CNContactsUserDefaults;
readonly countryCode: string;
readonly sortOrder: CNContactSortOrder;
}
declare class CNContainer extends NSObject implements NSCopying, NSSecureCoding {
static alloc(): CNContainer; // inherited from NSObject
static new(): CNContainer; // inherited from NSObject
static predicateForContainerOfContactWithIdentifier(contactIdentifier: string): NSPredicate;
static predicateForContainerOfGroupWithIdentifier(groupIdentifier: string): NSPredicate;
static predicateForContainersWithIdentifiers(identifiers: NSArray<string> | string[]): NSPredicate;
readonly identifier: string;
readonly name: string;
readonly type: CNContainerType;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
}
declare var CNContainerIdentifierKey: string;
declare var CNContainerNameKey: string;
declare const enum CNContainerType {
Unassigned = 0,
Local = 1,
Exchange = 2,
CardDAV = 3
}
declare var CNContainerTypeKey: string;
declare const enum CNEntityType {
Contacts = 0
}
declare const enum CNErrorCode {
CommunicationError = 1,
DataAccessError = 2,
AuthorizationDenied = 100,
NoAccessableWritableContainers = 101,
RecordDoesNotExist = 200,
InsertedRecordAlreadyExists = 201,
ContainmentCycle = 202,
ContainmentScope = 203,
ParentRecordDoesNotExist = 204,
RecordIdentifierInvalid = 205,
ValidationMultipleErrors = 300,
ValidationTypeMismatch = 301,
ValidationConfigurationError = 302,
PredicateInvalid = 400,
PolicyViolation = 500,
ClientIdentifierInvalid = 600,
ClientIdentifierDoesNotExist = 601,
VCardMalformed = 700,
VCardSummarizationError = 701
}
declare var CNErrorDomain: string;
declare var CNErrorUserInfoAffectedRecordIdentifiersKey: string;
declare var CNErrorUserInfoAffectedRecordsKey: string;
declare var CNErrorUserInfoKeyPathsKey: string;
declare var CNErrorUserInfoValidationErrorsKey: string;
declare class CNGroup extends NSObject implements NSCopying, NSMutableCopying, NSSecureCoding {
static alloc(): CNGroup; // inherited from NSObject
static new(): CNGroup; // inherited from NSObject
static predicateForGroupsInContainerWithIdentifier(containerIdentifier: string): NSPredicate;
static predicateForGroupsWithIdentifiers(identifiers: NSArray<string> | string[]): NSPredicate;
readonly identifier: string;
readonly name: string;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
mutableCopyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
}
declare var CNGroupIdentifierKey: string;
declare var CNGroupNameKey: string;
declare class CNInstantMessageAddress extends NSObject implements NSCopying, NSSecureCoding {
static alloc(): CNInstantMessageAddress; // inherited from NSObject
static localizedStringForKey(key: string): string;
static localizedStringForService(service: string): string;
static new(): CNInstantMessageAddress; // inherited from NSObject
readonly service: string;
readonly username: string;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
constructor(o: { username: string; service: string; });
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
initWithUsernameService(username: string, service: string): this;
}
declare var CNInstantMessageAddressServiceKey: string;
declare var CNInstantMessageAddressUsernameKey: string;
declare var CNInstantMessageServiceAIM: string;
declare var CNInstantMessageServiceFacebook: string;
declare var CNInstantMessageServiceGaduGadu: string;
declare var CNInstantMessageServiceGoogleTalk: string;
declare var CNInstantMessageServiceICQ: string;
declare var CNInstantMessageServiceJabber: string;
declare var CNInstantMessageServiceMSN: string;
declare var CNInstantMessageServiceQQ: string;
declare var CNInstantMessageServiceSkype: string;
declare var CNInstantMessageServiceYahoo: string;
interface CNKeyDescriptor extends NSCopying, NSObjectProtocol, NSSecureCoding {
}
declare var CNKeyDescriptor: {
prototype: CNKeyDescriptor;
};
declare var CNLabelContactRelationAssistant: string;
declare var CNLabelContactRelationBrother: string;
declare var CNLabelContactRelationChild: string;
declare var CNLabelContactRelationDaughter: string;
declare var CNLabelContactRelationFather: string;
declare var CNLabelContactRelationFriend: string;
declare var CNLabelContactRelationManager: string;
declare var CNLabelContactRelationMother: string;
declare var CNLabelContactRelationParent: string;
declare var CNLabelContactRelationPartner: string;
declare var CNLabelContactRelationSister: string;
declare var CNLabelContactRelationSon: string;
declare var CNLabelContactRelationSpouse: string;
declare var CNLabelDateAnniversary: string;
declare var CNLabelEmailiCloud: string;
declare var CNLabelHome: string;
declare var CNLabelOther: string;
declare var CNLabelPhoneNumberHomeFax: string;
declare var CNLabelPhoneNumberMain: string;
declare var CNLabelPhoneNumberMobile: string;
declare var CNLabelPhoneNumberOtherFax: string;
declare var CNLabelPhoneNumberPager: string;
declare var CNLabelPhoneNumberWorkFax: string;
declare var CNLabelPhoneNumberiPhone: string;
declare var CNLabelURLAddressHomePage: string;
declare var CNLabelWork: string;
declare class CNLabeledValue<ValueType> extends NSObject implements NSCopying, NSSecureCoding {
static alloc<ValueType>(): CNLabeledValue<ValueType>; // inherited from NSObject
static labeledValueWithLabelValue<ValueType>(label: string, value: ValueType): CNLabeledValue<ValueType>;
static localizedStringForLabel(label: string): string;
static new<ValueType>(): CNLabeledValue<ValueType>; // inherited from NSObject
readonly identifier: string;
readonly label: string;
readonly value: ValueType;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
constructor(o: { label: string; value: ValueType; });
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
initWithLabelValue(label: string, value: ValueType): this;
labeledValueBySettingLabel(label: string): this;
labeledValueBySettingLabelValue(label: string, value: ValueType): this;
labeledValueBySettingValue(value: ValueType): this;
}
declare class CNMutableContact extends CNContact {
static alloc(): CNMutableContact; // inherited from NSObject
static new(): CNMutableContact; // inherited from NSObject
static objectWithItemProviderDataTypeIdentifierError(data: NSData, typeIdentifier: string): CNMutableContact; // inherited from NSItemProviderReading
birthday: NSDateComponents;
contactRelations: NSArray<CNLabeledValue<CNContactRelation>>;
contactType: CNContactType;
dates: NSArray<CNLabeledValue<NSDateComponents>>;
departmentName: string;
emailAddresses: NSArray<CNLabeledValue<string>>;
familyName: string;
givenName: string;
imageData: NSData;
instantMessageAddresses: NSArray<CNLabeledValue<CNInstantMessageAddress>>;
jobTitle: string;
middleName: string;
namePrefix: string;
nameSuffix: string;
nickname: string;
nonGregorianBirthday: NSDateComponents;
note: string;
organizationName: string;
phoneNumbers: NSArray<CNLabeledValue<CNPhoneNumber>>;
phoneticFamilyName: string;
phoneticGivenName: string;
phoneticMiddleName: string;
phoneticOrganizationName: string;
postalAddresses: NSArray<CNLabeledValue<CNPostalAddress>>;
previousFamilyName: string;
socialProfiles: NSArray<CNLabeledValue<CNSocialProfile>>;
urlAddresses: NSArray<CNLabeledValue<string>>;
}
declare class CNMutableGroup extends CNGroup {
static alloc(): CNMutableGroup; // inherited from NSObject
static new(): CNMutableGroup; // inherited from NSObject
name: string;
}
declare class CNMutablePostalAddress extends CNPostalAddress {
static alloc(): CNMutablePostalAddress; // inherited from NSObject
static new(): CNMutablePostalAddress; // inherited from NSObject
ISOCountryCode: string;
city: string;
country: string;
postalCode: string;
state: string;
street: string;
subAdministrativeArea: string;
subLocality: string;
}
declare class CNPhoneNumber extends NSObject implements NSCopying, NSSecureCoding {
static alloc(): CNPhoneNumber; // inherited from NSObject
static new(): CNPhoneNumber; // inherited from NSObject
static phoneNumberWithStringValue(stringValue: string): CNPhoneNumber;
readonly stringValue: string;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
constructor(o: { stringValue: string; });
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
initWithStringValue(string: string): this;
}
declare class CNPostalAddress extends NSObject implements NSCopying, NSMutableCopying, NSSecureCoding {
static alloc(): CNPostalAddress; // inherited from NSObject
static localizedStringForKey(key: string): string;
static new(): CNPostalAddress; // inherited from NSObject
readonly ISOCountryCode: string;
readonly city: string;
readonly country: string;
readonly postalCode: string;
readonly state: string;
readonly street: string;
readonly subAdministrativeArea: string;
readonly subLocality: string;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
mutableCopyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
}
declare var CNPostalAddressCityKey: string;
declare var CNPostalAddressCountryKey: string;
declare class CNPostalAddressFormatter extends NSFormatter {
static alloc(): CNPostalAddressFormatter; // inherited from NSObject
static attributedStringFromPostalAddressStyleWithDefaultAttributes(postalAddress: CNPostalAddress, style: CNPostalAddressFormatterStyle, attributes: NSDictionary<any, any>): NSAttributedString;
static new(): CNPostalAddressFormatter; // inherited from NSObject
static stringFromPostalAddressStyle(postalAddress: CNPostalAddress, style: CNPostalAddressFormatterStyle): string;
style: CNPostalAddressFormatterStyle;
attributedStringFromPostalAddressWithDefaultAttributes(postalAddress: CNPostalAddress, attributes: NSDictionary<any, any>): NSAttributedString;
stringFromPostalAddress(postalAddress: CNPostalAddress): string;
}
declare const enum CNPostalAddressFormatterStyle {
MailingAddress = 0
}
declare var CNPostalAddressISOCountryCodeKey: string;
declare var CNPostalAddressLocalizedPropertyNameAttribute: string;
declare var CNPostalAddressPostalCodeKey: string;
declare var CNPostalAddressPropertyAttribute: string;
declare var CNPostalAddressStateKey: string;
declare var CNPostalAddressStreetKey: string;
declare var CNPostalAddressSubAdministrativeAreaKey: string;
declare var CNPostalAddressSubLocalityKey: string;
declare class CNSaveRequest extends NSObject {
static alloc(): CNSaveRequest; // inherited from NSObject
static new(): CNSaveRequest; // inherited from NSObject
addContactToContainerWithIdentifier(contact: CNMutableContact, identifier: string): void;
addGroupToContainerWithIdentifier(group: CNMutableGroup, identifier: string): void;
addMemberToGroup(contact: CNContact, group: CNGroup): void;
deleteContact(contact: CNMutableContact): void;
deleteGroup(group: CNMutableGroup): void;
removeMemberFromGroup(contact: CNContact, group: CNGroup): void;
updateContact(contact: CNMutableContact): void;
updateGroup(group: CNMutableGroup): void;
}
declare class CNSocialProfile extends NSObject implements NSCopying, NSSecureCoding {
static alloc(): CNSocialProfile; // inherited from NSObject
static localizedStringForKey(key: string): string;
static localizedStringForService(service: string): string;
static new(): CNSocialProfile; // inherited from NSObject
readonly service: string;
readonly urlString: string;
readonly userIdentifier: string;
readonly username: string;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
constructor(o: { urlString: string; username: string; userIdentifier: string; service: string; });
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
initWithUrlStringUsernameUserIdentifierService(urlString: string, username: string, userIdentifier: string, service: string): this;
}
declare var CNSocialProfileServiceFacebook: string;
declare var CNSocialProfileServiceFlickr: string;
declare var CNSocialProfileServiceGameCenter: string;
declare var CNSocialProfileServiceKey: string;
declare var CNSocialProfileServiceLinkedIn: string;
declare var CNSocialProfileServiceMySpace: string;
declare var CNSocialProfileServiceSinaWeibo: string;
declare var CNSocialProfileServiceTencentWeibo: string;
declare var CNSocialProfileServiceTwitter: string;
declare var CNSocialProfileServiceYelp: string;
declare var CNSocialProfileURLStringKey: string;
declare var CNSocialProfileUserIdentifierKey: string;
declare var CNSocialProfileUsernameKey: string;