/** * @since 13.0 */ declare class SNAudioFileAnalyzer extends NSObject { static alloc(): SNAudioFileAnalyzer; // inherited from NSObject static new(): SNAudioFileAnalyzer; // inherited from NSObject constructor(o: { URL: NSURL; }); addRequestWithObserverError(request: SNRequest, observer: SNResultsObserving, error?: interop.Reference): boolean; analyze(): void; analyzeWithCompletionHandler(completionHandler: (p1: boolean) => void): void; cancelAnalysis(): void; initWithURLError(url: NSURL, error?: interop.Reference): this; removeAllRequests(): void; removeRequest(request: SNRequest): void; } /** * @since 13.0 */ declare class SNAudioStreamAnalyzer extends NSObject { static alloc(): SNAudioStreamAnalyzer; // inherited from NSObject static new(): SNAudioStreamAnalyzer; // inherited from NSObject constructor(o: { format: AVAudioFormat; }); addRequestWithObserverError(request: SNRequest, observer: SNResultsObserving, error?: interop.Reference): boolean; analyzeAudioBufferAtAudioFramePosition(audioBuffer: AVAudioBuffer, audioFramePosition: number): void; completeAnalysis(): void; initWithFormat(format: AVAudioFormat): this; removeAllRequests(): void; removeRequest(request: SNRequest): void; } /** * @since 13.0 */ declare class SNClassification extends NSObject { static alloc(): SNClassification; // inherited from NSObject static new(): SNClassification; // inherited from NSObject readonly confidence: number; readonly identifier: string; } /** * @since 13.0 */ declare class SNClassificationResult extends NSObject implements SNResult { static alloc(): SNClassificationResult; // inherited from NSObject static new(): SNClassificationResult; // inherited from NSObject readonly classifications: NSArray; readonly timeRange: CMTimeRange; 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 class(): typeof NSObject; /** * @since 15.0 */ classificationForIdentifier(identifier: string): SNClassification; 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; self(): this; } /** * @since 15.0 */ declare var SNClassifierIdentifierVersion1: string; /** * @since 13.0 */ declare class SNClassifySoundRequest extends NSObject implements SNRequest { static alloc(): SNClassifySoundRequest; // inherited from NSObject static new(): SNClassifySoundRequest; // inherited from NSObject /** * @since 15.0 */ readonly knownClassifications: NSArray; overlapFactor: number; /** * @since 15.0 */ windowDuration: CMTime; /** * @since 15.0 */ readonly windowDurationConstraint: SNTimeDurationConstraint; 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 /** * @since 15.0 */ constructor(o: { classifierIdentifier: string; }); constructor(o: { MLModel: MLModel; }); class(): typeof NSObject; conformsToProtocol(aProtocol: any /* Protocol */): boolean; /** * @since 15.0 */ initWithClassifierIdentifierError(classifierIdentifier: string, error?: interop.Reference): this; initWithMLModelError(mlModel: MLModel, error?: interop.Reference): this; 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; self(): this; } declare const enum SNErrorCode { UnknownError = 1, OperationFailed = 2, InvalidFormat = 3, InvalidModel = 4, InvalidFile = 5 } /** * @since 13.0 */ declare var SNErrorDomain: string; /** * @since 13.0 */ interface SNRequest extends NSObjectProtocol { } declare var SNRequest: { prototype: SNRequest; }; /** * @since 13.0 */ interface SNResult extends NSObjectProtocol { } declare var SNResult: { prototype: SNResult; }; /** * @since 13.0 */ interface SNResultsObserving extends NSObjectProtocol { requestDidComplete?(request: SNRequest): void; requestDidFailWithError?(request: SNRequest, error: NSError): void; requestDidProduceResult(request: SNRequest, result: SNResult): void; } declare var SNResultsObserving: { prototype: SNResultsObserving; }; /** * @since 15.0 */ declare class SNTimeDurationConstraint extends NSObject { static alloc(): SNTimeDurationConstraint; // inherited from NSObject static new(): SNTimeDurationConstraint; // inherited from NSObject readonly durationRange: CMTimeRange; readonly enumeratedDurations: NSArray; readonly type: SNTimeDurationConstraintType; constructor(o: { durationRange: CMTimeRange; }); constructor(o: { enumeratedDurations: NSArray | NSValue[]; }); initWithDurationRange(durationRange: CMTimeRange): this; initWithEnumeratedDurations(enumeratedDurations: NSArray | NSValue[]): this; } /** * @since 15.0 */ declare const enum SNTimeDurationConstraintType { Enumerated = 1, Range = 2 }