mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
686 lines
15 KiB
TypeScript
686 lines
15 KiB
TypeScript
|
|
declare class CSCustomAttributeKey extends NSObject implements NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): CSCustomAttributeKey; // inherited from NSObject
|
|
|
|
static new(): CSCustomAttributeKey; // inherited from NSObject
|
|
|
|
readonly keyName: string;
|
|
|
|
readonly multiValued: boolean;
|
|
|
|
readonly searchable: boolean;
|
|
|
|
readonly searchableByDefault: boolean;
|
|
|
|
readonly unique: boolean;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
constructor(o: { keyName: string; });
|
|
|
|
constructor(o: { keyName: string; searchable: boolean; searchableByDefault: boolean; unique: boolean; multiValued: boolean; });
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
encodeWithCoder(aCoder: NSCoder): void;
|
|
|
|
initWithCoder(aDecoder: NSCoder): this;
|
|
|
|
initWithKeyName(keyName: string): this;
|
|
|
|
initWithKeyNameSearchableSearchableByDefaultUniqueMultiValued(keyName: string, searchable: boolean, searchableByDefault: boolean, unique: boolean, multiValued: boolean): this;
|
|
}
|
|
|
|
declare const enum CSIndexErrorCode {
|
|
|
|
UnknownError = -1,
|
|
|
|
IndexUnavailableError = -1000,
|
|
|
|
InvalidItemError = -1001,
|
|
|
|
InvalidClientStateError = -1002,
|
|
|
|
RemoteConnectionError = -1003,
|
|
|
|
QuotaExceeded = -1004,
|
|
|
|
IndexingUnsupported = -1005
|
|
}
|
|
|
|
declare var CSIndexErrorDomain: string;
|
|
|
|
declare class CSIndexExtensionRequestHandler extends NSObject implements CSSearchableIndexDelegate, NSExtensionRequestHandling {
|
|
|
|
static alloc(): CSIndexExtensionRequestHandler; // inherited from NSObject
|
|
|
|
static new(): CSIndexExtensionRequestHandler; // inherited from NSObject
|
|
|
|
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 // inherited from NSObjectProtocol
|
|
|
|
beginRequestWithExtensionContext(context: NSExtensionContext): void;
|
|
|
|
class(): typeof NSObject;
|
|
|
|
conformsToProtocol(aProtocol: any /* Protocol */): boolean;
|
|
|
|
isEqual(object: any): boolean;
|
|
|
|
isKindOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
isMemberOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
performSelector(aSelector: string): any;
|
|
|
|
performSelectorWithObject(aSelector: string, object: any): any;
|
|
|
|
performSelectorWithObjectWithObject(aSelector: string, object1: any, object2: any): any;
|
|
|
|
respondsToSelector(aSelector: string): boolean;
|
|
|
|
retainCount(): number;
|
|
|
|
searchableIndexDidFinishThrottle(searchableIndex: CSSearchableIndex): void;
|
|
|
|
searchableIndexDidThrottle(searchableIndex: CSSearchableIndex): void;
|
|
|
|
searchableIndexReindexAllSearchableItemsWithAcknowledgementHandler(searchableIndex: CSSearchableIndex, acknowledgementHandler: () => void): void;
|
|
|
|
searchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler(searchableIndex: CSSearchableIndex, identifiers: NSArray<string>, acknowledgementHandler: () => void): void;
|
|
|
|
self(): this;
|
|
}
|
|
|
|
declare class CSLocalizedString extends NSString {
|
|
|
|
static alloc(): CSLocalizedString; // inherited from NSObject
|
|
|
|
static new(): CSLocalizedString; // inherited from NSObject
|
|
|
|
static string(): CSLocalizedString; // inherited from NSString
|
|
|
|
static stringWithCStringEncoding(cString: string, enc: number): CSLocalizedString; // inherited from NSString
|
|
|
|
static stringWithCharactersLength(characters: interop.Pointer | interop.Reference<string>, length: number): CSLocalizedString; // inherited from NSString
|
|
|
|
static stringWithContentsOfFileEncodingError(path: string, enc: number): CSLocalizedString; // inherited from NSString
|
|
|
|
static stringWithContentsOfFileUsedEncodingError(path: string, enc: interop.Pointer | interop.Reference<number>): CSLocalizedString; // inherited from NSString
|
|
|
|
static stringWithContentsOfURLEncodingError(url: NSURL, enc: number): CSLocalizedString; // inherited from NSString
|
|
|
|
static stringWithContentsOfURLUsedEncodingError(url: NSURL, enc: interop.Pointer | interop.Reference<number>): CSLocalizedString; // inherited from NSString
|
|
|
|
static stringWithString(string: string): CSLocalizedString; // inherited from NSString
|
|
|
|
static stringWithUTF8String(nullTerminatedCString: string): CSLocalizedString; // inherited from NSString
|
|
|
|
constructor(o: { localizedStrings: NSDictionary<any, any>; });
|
|
|
|
initWithLocalizedStrings(localizedStrings: NSDictionary<any, any>): this;
|
|
|
|
localizedString(): string;
|
|
}
|
|
|
|
declare var CSMailboxArchive: string;
|
|
|
|
declare var CSMailboxDrafts: string;
|
|
|
|
declare var CSMailboxInbox: string;
|
|
|
|
declare var CSMailboxJunk: string;
|
|
|
|
declare var CSMailboxSent: string;
|
|
|
|
declare var CSMailboxTrash: string;
|
|
|
|
declare class CSPerson extends NSObject implements NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): CSPerson; // inherited from NSObject
|
|
|
|
static new(): CSPerson; // inherited from NSObject
|
|
|
|
contactIdentifier: string;
|
|
|
|
readonly displayName: string;
|
|
|
|
readonly handleIdentifier: string;
|
|
|
|
readonly handles: NSArray<string>;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
constructor(o: { displayName: string; handles: NSArray<string>; handleIdentifier: string; });
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
encodeWithCoder(aCoder: NSCoder): void;
|
|
|
|
initWithCoder(aDecoder: NSCoder): this;
|
|
|
|
initWithDisplayNameHandlesHandleIdentifier(displayName: string, handles: NSArray<string>, handleIdentifier: string): this;
|
|
}
|
|
|
|
declare var CSQueryContinuationActionType: string;
|
|
|
|
declare class CSSearchQuery extends NSObject {
|
|
|
|
static alloc(): CSSearchQuery; // inherited from NSObject
|
|
|
|
static new(): CSSearchQuery; // inherited from NSObject
|
|
|
|
readonly cancelled: boolean;
|
|
|
|
completionHandler: (p1: NSError) => void;
|
|
|
|
readonly foundItemCount: number;
|
|
|
|
foundItemsHandler: (p1: NSArray<CSSearchableItem>) => void;
|
|
|
|
protectionClasses: NSArray<string>;
|
|
|
|
constructor(o: { queryString: string; attributes: NSArray<string>; });
|
|
|
|
cancel(): void;
|
|
|
|
initWithQueryStringAttributes(queryString: string, attributes: NSArray<string>): this;
|
|
|
|
start(): void;
|
|
}
|
|
|
|
declare const enum CSSearchQueryErrorCode {
|
|
|
|
Unknown = -2000,
|
|
|
|
IndexUnreachable = -2001,
|
|
|
|
InvalidQuery = -2002,
|
|
|
|
Cancelled = -2003
|
|
}
|
|
|
|
declare var CSSearchQueryErrorDomain: string;
|
|
|
|
declare var CSSearchQueryString: string;
|
|
|
|
declare class CSSearchableIndex extends NSObject {
|
|
|
|
static alloc(): CSSearchableIndex; // inherited from NSObject
|
|
|
|
static defaultSearchableIndex(): CSSearchableIndex;
|
|
|
|
static isIndexingAvailable(): boolean;
|
|
|
|
static new(): CSSearchableIndex; // inherited from NSObject
|
|
|
|
indexDelegate: CSSearchableIndexDelegate;
|
|
|
|
constructor(o: { name: string; });
|
|
|
|
constructor(o: { name: string; protectionClass: string; });
|
|
|
|
beginIndexBatch(): void;
|
|
|
|
deleteAllSearchableItemsWithCompletionHandler(completionHandler: (p1: NSError) => void): void;
|
|
|
|
deleteSearchableItemsWithDomainIdentifiersCompletionHandler(domainIdentifiers: NSArray<string>, completionHandler: (p1: NSError) => void): void;
|
|
|
|
deleteSearchableItemsWithIdentifiersCompletionHandler(identifiers: NSArray<string>, completionHandler: (p1: NSError) => void): void;
|
|
|
|
endIndexBatchWithClientStateCompletionHandler(clientState: NSData, completionHandler: (p1: NSError) => void): void;
|
|
|
|
fetchLastClientStateWithCompletionHandler(completionHandler: (p1: NSData, p2: NSError) => void): void;
|
|
|
|
indexSearchableItemsCompletionHandler(items: NSArray<CSSearchableItem>, completionHandler: (p1: NSError) => void): void;
|
|
|
|
initWithName(name: string): this;
|
|
|
|
initWithNameProtectionClass(name: string, protectionClass: string): this;
|
|
}
|
|
|
|
interface CSSearchableIndexDelegate extends NSObjectProtocol {
|
|
|
|
searchableIndexDidFinishThrottle?(searchableIndex: CSSearchableIndex): void;
|
|
|
|
searchableIndexDidThrottle?(searchableIndex: CSSearchableIndex): void;
|
|
|
|
searchableIndexReindexAllSearchableItemsWithAcknowledgementHandler(searchableIndex: CSSearchableIndex, acknowledgementHandler: () => void): void;
|
|
|
|
searchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler(searchableIndex: CSSearchableIndex, identifiers: NSArray<string>, acknowledgementHandler: () => void): void;
|
|
}
|
|
declare var CSSearchableIndexDelegate: {
|
|
|
|
prototype: CSSearchableIndexDelegate;
|
|
};
|
|
|
|
declare class CSSearchableItem extends NSObject implements NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): CSSearchableItem; // inherited from NSObject
|
|
|
|
static new(): CSSearchableItem; // inherited from NSObject
|
|
|
|
attributeSet: CSSearchableItemAttributeSet;
|
|
|
|
domainIdentifier: string;
|
|
|
|
expirationDate: Date;
|
|
|
|
uniqueIdentifier: string;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
constructor(o: { uniqueIdentifier: string; domainIdentifier: string; attributeSet: CSSearchableItemAttributeSet; });
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
encodeWithCoder(aCoder: NSCoder): void;
|
|
|
|
initWithCoder(aDecoder: NSCoder): this;
|
|
|
|
initWithUniqueIdentifierDomainIdentifierAttributeSet(uniqueIdentifier: string, domainIdentifier: string, attributeSet: CSSearchableItemAttributeSet): this;
|
|
}
|
|
|
|
declare var CSSearchableItemActionType: string;
|
|
|
|
declare var CSSearchableItemActivityIdentifier: string;
|
|
|
|
declare class CSSearchableItemAttributeSet extends NSObject implements NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): CSSearchableItemAttributeSet; // inherited from NSObject
|
|
|
|
static new(): CSSearchableItemAttributeSet; // inherited from NSObject
|
|
|
|
EXIFGPSVersion: string;
|
|
|
|
EXIFVersion: string;
|
|
|
|
GPSAreaInformation: string;
|
|
|
|
GPSDOP: number;
|
|
|
|
GPSDateStamp: Date;
|
|
|
|
GPSDestBearing: number;
|
|
|
|
GPSDestDistance: number;
|
|
|
|
GPSDestLatitude: number;
|
|
|
|
GPSDestLongitude: number;
|
|
|
|
GPSDifferental: number;
|
|
|
|
GPSMapDatum: string;
|
|
|
|
GPSMeasureMode: string;
|
|
|
|
GPSProcessingMethod: string;
|
|
|
|
GPSStatus: string;
|
|
|
|
GPSTrack: number;
|
|
|
|
HTMLContentData: NSData;
|
|
|
|
ISOSpeed: number;
|
|
|
|
URL: NSURL;
|
|
|
|
accountHandles: NSArray<string>;
|
|
|
|
accountIdentifier: string;
|
|
|
|
acquisitionMake: string;
|
|
|
|
acquisitionModel: string;
|
|
|
|
addedDate: Date;
|
|
|
|
additionalRecipients: NSArray<CSPerson>;
|
|
|
|
album: string;
|
|
|
|
allDay: number;
|
|
|
|
alternateNames: NSArray<string>;
|
|
|
|
altitude: number;
|
|
|
|
aperture: number;
|
|
|
|
artist: string;
|
|
|
|
audiences: NSArray<string>;
|
|
|
|
audioBitRate: number;
|
|
|
|
audioChannelCount: number;
|
|
|
|
audioEncodingApplication: string;
|
|
|
|
audioSampleRate: number;
|
|
|
|
audioTrackNumber: number;
|
|
|
|
authorAddresses: NSArray<string>;
|
|
|
|
authorEmailAddresses: NSArray<string>;
|
|
|
|
authorNames: NSArray<string>;
|
|
|
|
authors: NSArray<CSPerson>;
|
|
|
|
bitsPerSample: number;
|
|
|
|
cameraOwner: string;
|
|
|
|
city: string;
|
|
|
|
codecs: NSArray<string>;
|
|
|
|
colorSpace: string;
|
|
|
|
comment: string;
|
|
|
|
completionDate: Date;
|
|
|
|
composer: string;
|
|
|
|
contactKeywords: NSArray<string>;
|
|
|
|
containerDisplayName: string;
|
|
|
|
containerIdentifier: string;
|
|
|
|
containerOrder: number;
|
|
|
|
containerTitle: string;
|
|
|
|
contentCreationDate: Date;
|
|
|
|
contentDescription: string;
|
|
|
|
contentModificationDate: Date;
|
|
|
|
contentRating: number;
|
|
|
|
contentSources: NSArray<string>;
|
|
|
|
contentType: string;
|
|
|
|
contentTypeTree: NSArray<string>;
|
|
|
|
contentURL: NSURL;
|
|
|
|
contributors: NSArray<string>;
|
|
|
|
copyright: string;
|
|
|
|
country: string;
|
|
|
|
coverage: NSArray<string>;
|
|
|
|
creator: string;
|
|
|
|
deliveryType: number;
|
|
|
|
director: string;
|
|
|
|
displayName: string;
|
|
|
|
domainIdentifier: string;
|
|
|
|
downloadedDate: Date;
|
|
|
|
dueDate: Date;
|
|
|
|
duration: number;
|
|
|
|
editors: NSArray<string>;
|
|
|
|
emailAddresses: NSArray<string>;
|
|
|
|
emailHeaders: NSDictionary<string, NSArray<any>>;
|
|
|
|
encodingApplications: NSArray<string>;
|
|
|
|
endDate: Date;
|
|
|
|
exposureMode: number;
|
|
|
|
exposureProgram: string;
|
|
|
|
exposureTime: number;
|
|
|
|
exposureTimeString: string;
|
|
|
|
fNumber: number;
|
|
|
|
fileSize: number;
|
|
|
|
flashOn: number;
|
|
|
|
focalLength: number;
|
|
|
|
focalLength35mm: number;
|
|
|
|
fontNames: NSArray<string>;
|
|
|
|
fullyFormattedAddress: string;
|
|
|
|
generalMIDISequence: number;
|
|
|
|
genre: string;
|
|
|
|
hasAlphaChannel: number;
|
|
|
|
headline: string;
|
|
|
|
hiddenAdditionalRecipients: NSArray<CSPerson>;
|
|
|
|
identifier: string;
|
|
|
|
imageDirection: number;
|
|
|
|
importantDates: NSArray<Date>;
|
|
|
|
information: string;
|
|
|
|
instantMessageAddresses: NSArray<string>;
|
|
|
|
instructions: string;
|
|
|
|
keySignature: string;
|
|
|
|
keywords: NSArray<string>;
|
|
|
|
kind: string;
|
|
|
|
languages: NSArray<string>;
|
|
|
|
lastUsedDate: Date;
|
|
|
|
latitude: number;
|
|
|
|
layerNames: NSArray<string>;
|
|
|
|
lensModel: string;
|
|
|
|
likelyJunk: number;
|
|
|
|
local: number;
|
|
|
|
longitude: number;
|
|
|
|
lyricist: string;
|
|
|
|
mailboxIdentifiers: NSArray<string>;
|
|
|
|
maxAperture: number;
|
|
|
|
mediaTypes: NSArray<string>;
|
|
|
|
metadataModificationDate: Date;
|
|
|
|
meteringMode: string;
|
|
|
|
musicalGenre: string;
|
|
|
|
musicalInstrumentCategory: string;
|
|
|
|
musicalInstrumentName: string;
|
|
|
|
namedLocation: string;
|
|
|
|
organizations: NSArray<string>;
|
|
|
|
orientation: number;
|
|
|
|
originalFormat: string;
|
|
|
|
originalSource: string;
|
|
|
|
pageCount: number;
|
|
|
|
pageHeight: number;
|
|
|
|
pageWidth: number;
|
|
|
|
participants: NSArray<string>;
|
|
|
|
path: string;
|
|
|
|
performers: NSArray<string>;
|
|
|
|
phoneNumbers: NSArray<string>;
|
|
|
|
pixelCount: number;
|
|
|
|
pixelHeight: number;
|
|
|
|
pixelWidth: number;
|
|
|
|
playCount: number;
|
|
|
|
postalCode: string;
|
|
|
|
primaryRecipients: NSArray<CSPerson>;
|
|
|
|
producer: string;
|
|
|
|
profileName: string;
|
|
|
|
projects: NSArray<string>;
|
|
|
|
publishers: NSArray<string>;
|
|
|
|
rating: number;
|
|
|
|
ratingDescription: string;
|
|
|
|
recipientAddresses: NSArray<string>;
|
|
|
|
recipientEmailAddresses: NSArray<string>;
|
|
|
|
recipientNames: NSArray<string>;
|
|
|
|
recordingDate: Date;
|
|
|
|
redEyeOn: number;
|
|
|
|
relatedUniqueIdentifier: string;
|
|
|
|
resolutionHeightDPI: number;
|
|
|
|
resolutionWidthDPI: number;
|
|
|
|
rights: string;
|
|
|
|
role: string;
|
|
|
|
securityMethod: string;
|
|
|
|
speed: number;
|
|
|
|
startDate: Date;
|
|
|
|
stateOrProvince: string;
|
|
|
|
streamable: number;
|
|
|
|
subThoroughfare: string;
|
|
|
|
subject: string;
|
|
|
|
supportsNavigation: number;
|
|
|
|
supportsPhoneCall: number;
|
|
|
|
tempo: number;
|
|
|
|
textContent: string;
|
|
|
|
theme: string;
|
|
|
|
thoroughfare: string;
|
|
|
|
thumbnailData: NSData;
|
|
|
|
thumbnailURL: NSURL;
|
|
|
|
timeSignature: string;
|
|
|
|
timestamp: Date;
|
|
|
|
title: string;
|
|
|
|
totalBitRate: number;
|
|
|
|
version: string;
|
|
|
|
videoBitRate: number;
|
|
|
|
weakRelatedUniqueIdentifier: string;
|
|
|
|
whiteBalance: number;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
constructor(o: { itemContentType: string; });
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
encodeWithCoder(aCoder: NSCoder): void;
|
|
|
|
initWithCoder(aDecoder: NSCoder): this;
|
|
|
|
initWithItemContentType(itemContentType: string): this;
|
|
|
|
setValueForCustomKey(value: NSSecureCoding, key: CSCustomAttributeKey): void;
|
|
|
|
valueForCustomKey(key: CSCustomAttributeKey): NSSecureCoding;
|
|
}
|
|
|
|
declare var CoreSpotlightVersionNumber: number;
|
|
|
|
declare var CoreSpotlightVersionString: interop.Reference<number>;
|