Files
Panayot Cankov 299203901e Move platform .d.ts-es to separate plugin folder
Add dev-setup to figure out links

Update development workflow

Update package.json and dts-ios

Update the iOS declarations

grunt is now fine
2016-09-26 11:53:39 +03:00

899 lines
23 KiB
TypeScript

declare const enum CNAuthorizationStatus {
NotDetermined = 0,
Restricted = 1,
Denied = 2,
Authorized = 3
}
declare class CNContact extends NSObject implements NSCopying, NSMutableCopying, NSSecureCoding {
static alloc(): CNContact; // inherited from NSObject
static comparatorForNameSortOrder(sortOrder: CNContactSortOrder): (p1: any, p2: any) => NSComparisonResult;
static descriptorForAllComparatorKeys(): CNKeyDescriptor;
static localizedStringForKey(key: string): string;
static new(): CNContact; // inherited from NSObject
static predicateForContactsInContainerWithIdentifier(containerIdentifier: string): NSPredicate;
static predicateForContactsInGroupWithIdentifier(groupIdentifier: string): NSPredicate;
static predicateForContactsMatchingName(name: string): NSPredicate;
static predicateForContactsWithIdentifiers(identifiers: NSArray<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 */ static supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
areKeysAvailable(keyDescriptors: NSArray<CNKeyDescriptor>): boolean;
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
isKeyAvailable(key: string): boolean;
isUnifiedWithContactWithIdentifier(contactIdentifier: string): boolean;
mutableCopyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
}
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;
/* readonly */ static supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
constructor(o: { keysToFetch: NSArray<CNKeyDescriptor>; });
encodeWithCoder(aCoder: NSCoder): void;
initWithCoder(aDecoder: NSCoder): this;
initWithKeysToFetch(keysToFetch: NSArray<CNKeyDescriptor>): this;
}
declare class CNContactFormatter extends NSFormatter {
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;
attributedStringFromContactDefaultAttributes(contact: CNContact, attributes: NSDictionary<any, any>): NSAttributedString;
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;
/* readonly */ static 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;
/* readonly */ static 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>): CNContact;
unifiedContactsMatchingPredicateKeysToFetchError(predicate: NSPredicate, keys: NSArray<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>): 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>): NSPredicate;
/* readonly */ identifier: string;
/* readonly */ name: string;
/* readonly */ type: CNContainerType;
/* readonly */ static 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,
RecordDoesNotExist = 200,
InsertedRecordAlreadyExists = 201,
ContainmentCycle = 202,
ContainmentScope = 203,
ParentRecordDoesNotExist = 204,
ValidationMultipleErrors = 300,
ValidationTypeMismatch = 301,
ValidationConfigurationError = 302,
PredicateInvalid = 400,
PolicyViolation = 500
}
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>): NSPredicate;
/* readonly */ identifier: string;
/* readonly */ name: string;
/* readonly */ static 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;
/* readonly */ static 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 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 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;
/* readonly */ static 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
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;
}
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;
/* readonly */ static 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 */ static 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 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;
/* readonly */ static 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;