mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 05:18:39 +08:00

* 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.
328 lines
9.4 KiB
TypeScript
328 lines
9.4 KiB
TypeScript
|
|
declare var RPApplicationInfoBundleIdentifierKey: string;
|
|
|
|
declare class RPBroadcastActivityViewController extends UIViewController {
|
|
|
|
static alloc(): RPBroadcastActivityViewController; // inherited from NSObject
|
|
|
|
static loadBroadcastActivityViewControllerWithHandler(handler: (p1: RPBroadcastActivityViewController, p2: NSError) => void): void;
|
|
|
|
static loadBroadcastActivityViewControllerWithPreferredExtensionHandler(preferredExtension: string, handler: (p1: RPBroadcastActivityViewController, p2: NSError) => void): void;
|
|
|
|
static new(): RPBroadcastActivityViewController; // inherited from NSObject
|
|
|
|
delegate: RPBroadcastActivityViewControllerDelegate;
|
|
}
|
|
|
|
interface RPBroadcastActivityViewControllerDelegate extends NSObjectProtocol {
|
|
|
|
broadcastActivityViewControllerDidFinishWithBroadcastControllerError(broadcastActivityViewController: RPBroadcastActivityViewController, broadcastController: RPBroadcastController, error: NSError): void;
|
|
}
|
|
declare var RPBroadcastActivityViewControllerDelegate: {
|
|
|
|
prototype: RPBroadcastActivityViewControllerDelegate;
|
|
};
|
|
|
|
declare class RPBroadcastConfiguration extends NSObject implements NSCoding, NSSecureCoding {
|
|
|
|
static alloc(): RPBroadcastConfiguration; // inherited from NSObject
|
|
|
|
static new(): RPBroadcastConfiguration; // inherited from NSObject
|
|
|
|
clipDuration: number;
|
|
|
|
videoCompressionProperties: NSDictionary<string, NSObject>;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
encodeWithCoder(aCoder: NSCoder): void;
|
|
|
|
initWithCoder(aDecoder: NSCoder): this;
|
|
}
|
|
|
|
declare class RPBroadcastController extends NSObject {
|
|
|
|
static alloc(): RPBroadcastController; // inherited from NSObject
|
|
|
|
static new(): RPBroadcastController; // inherited from NSObject
|
|
|
|
readonly broadcastExtensionBundleID: string;
|
|
|
|
readonly broadcastURL: NSURL;
|
|
|
|
readonly broadcasting: boolean;
|
|
|
|
delegate: RPBroadcastControllerDelegate;
|
|
|
|
readonly paused: boolean;
|
|
|
|
readonly serviceInfo: NSDictionary<string, NSObject>;
|
|
|
|
finishBroadcastWithHandler(handler: (p1: NSError) => void): void;
|
|
|
|
pauseBroadcast(): void;
|
|
|
|
resumeBroadcast(): void;
|
|
|
|
startBroadcastWithHandler(handler: (p1: NSError) => void): void;
|
|
}
|
|
|
|
interface RPBroadcastControllerDelegate extends NSObjectProtocol {
|
|
|
|
broadcastControllerDidFinishWithError?(broadcastController: RPBroadcastController, error: NSError): void;
|
|
|
|
broadcastControllerDidUpdateBroadcastURL?(broadcastController: RPBroadcastController, broadcastURL: NSURL): void;
|
|
|
|
broadcastControllerDidUpdateServiceInfo?(broadcastController: RPBroadcastController, serviceInfo: NSDictionary<string, NSObject>): void;
|
|
}
|
|
declare var RPBroadcastControllerDelegate: {
|
|
|
|
prototype: RPBroadcastControllerDelegate;
|
|
};
|
|
|
|
declare class RPBroadcastHandler extends NSObject implements NSExtensionRequestHandling {
|
|
|
|
static alloc(): RPBroadcastHandler; // inherited from NSObject
|
|
|
|
static new(): RPBroadcastHandler; // 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;
|
|
|
|
self(): this;
|
|
|
|
updateBroadcastURL(broadcastURL: NSURL): void;
|
|
|
|
updateServiceInfo(serviceInfo: NSDictionary<string, NSObject>): void;
|
|
}
|
|
|
|
declare class RPBroadcastMP4ClipHandler extends RPBroadcastHandler {
|
|
|
|
static alloc(): RPBroadcastMP4ClipHandler; // inherited from NSObject
|
|
|
|
static new(): RPBroadcastMP4ClipHandler; // inherited from NSObject
|
|
|
|
finishedProcessingMP4ClipWithUpdatedBroadcastConfigurationError(broadcastConfiguration: RPBroadcastConfiguration, error: NSError): void;
|
|
|
|
processMP4ClipWithURLSetupInfoFinished(mp4ClipURL: NSURL, setupInfo: NSDictionary<string, NSObject>, finished: boolean): void;
|
|
}
|
|
|
|
declare class RPBroadcastSampleHandler extends RPBroadcastHandler {
|
|
|
|
static alloc(): RPBroadcastSampleHandler; // inherited from NSObject
|
|
|
|
static new(): RPBroadcastSampleHandler; // inherited from NSObject
|
|
|
|
broadcastAnnotatedWithApplicationInfo(applicationInfo: NSDictionary<any, any>): void;
|
|
|
|
broadcastFinished(): void;
|
|
|
|
broadcastPaused(): void;
|
|
|
|
broadcastResumed(): void;
|
|
|
|
broadcastStartedWithSetupInfo(setupInfo: NSDictionary<string, NSObject>): void;
|
|
|
|
finishBroadcastWithError(error: NSError): void;
|
|
|
|
processSampleBufferWithType(sampleBuffer: any, sampleBufferType: RPSampleBufferType): void;
|
|
}
|
|
|
|
declare const enum RPCameraPosition {
|
|
|
|
Front = 1,
|
|
|
|
Back = 2
|
|
}
|
|
|
|
declare class RPPreviewViewController extends UIViewController {
|
|
|
|
static alloc(): RPPreviewViewController; // inherited from NSObject
|
|
|
|
static new(): RPPreviewViewController; // inherited from NSObject
|
|
|
|
previewControllerDelegate: RPPreviewViewControllerDelegate;
|
|
}
|
|
|
|
interface RPPreviewViewControllerDelegate extends NSObjectProtocol {
|
|
|
|
previewControllerDidFinish?(previewController: RPPreviewViewController): void;
|
|
|
|
previewControllerDidFinishWithActivityTypes?(previewController: RPPreviewViewController, activityTypes: NSSet<string>): void;
|
|
}
|
|
declare var RPPreviewViewControllerDelegate: {
|
|
|
|
prototype: RPPreviewViewControllerDelegate;
|
|
};
|
|
|
|
declare const enum RPPreviewViewControllerMode {
|
|
|
|
Preview = 0,
|
|
|
|
Share = 1
|
|
}
|
|
|
|
declare const enum RPRecordingErrorCode {
|
|
|
|
Unknown = -5800,
|
|
|
|
UserDeclined = -5801,
|
|
|
|
Disabled = -5802,
|
|
|
|
FailedToStart = -5803,
|
|
|
|
Failed = -5804,
|
|
|
|
InsufficientStorage = -5805,
|
|
|
|
Interrupted = -5806,
|
|
|
|
ContentResize = -5807,
|
|
|
|
BroadcastInvalidSession = -5808,
|
|
|
|
SystemDormancy = -5809,
|
|
|
|
Entitlements = -5810,
|
|
|
|
ActivePhoneCall = -5811,
|
|
|
|
FailedToSave = -5812,
|
|
|
|
CarPlay = -5813,
|
|
|
|
FailedApplicationConnectionInvalid = -5814,
|
|
|
|
FailedApplicationConnectionInterrupted = -5815,
|
|
|
|
FailedNoMatchingApplicationContext = -5816,
|
|
|
|
FailedMediaServicesFailure = -5817,
|
|
|
|
VideoMixingFailure = -5818
|
|
}
|
|
|
|
declare var RPRecordingErrorDomain: string;
|
|
|
|
declare const enum RPSampleBufferType {
|
|
|
|
Video = 1,
|
|
|
|
AudioApp = 2,
|
|
|
|
AudioMic = 3
|
|
}
|
|
|
|
declare class RPScreenRecorder extends NSObject {
|
|
|
|
static alloc(): RPScreenRecorder; // inherited from NSObject
|
|
|
|
static new(): RPScreenRecorder; // inherited from NSObject
|
|
|
|
static sharedRecorder(): RPScreenRecorder;
|
|
|
|
readonly available: boolean;
|
|
|
|
cameraEnabled: boolean;
|
|
|
|
cameraPosition: RPCameraPosition;
|
|
|
|
readonly cameraPreviewView: UIView;
|
|
|
|
delegate: RPScreenRecorderDelegate;
|
|
|
|
microphoneEnabled: boolean;
|
|
|
|
readonly recording: boolean;
|
|
|
|
discardRecordingWithHandler(handler: () => void): void;
|
|
|
|
startCaptureWithHandlerCompletionHandler(captureHandler: (p1: any, p2: RPSampleBufferType, p3: NSError) => void, completionHandler: (p1: NSError) => void): void;
|
|
|
|
startRecordingWithHandler(handler: (p1: NSError) => void): void;
|
|
|
|
startRecordingWithMicrophoneEnabledHandler(microphoneEnabled: boolean, handler: (p1: NSError) => void): void;
|
|
|
|
stopCaptureWithHandler(handler: (p1: NSError) => void): void;
|
|
|
|
stopRecordingWithHandler(handler: (p1: RPPreviewViewController, p2: NSError) => void): void;
|
|
}
|
|
|
|
interface RPScreenRecorderDelegate extends NSObjectProtocol {
|
|
|
|
screenRecorderDidChangeAvailability?(screenRecorder: RPScreenRecorder): void;
|
|
|
|
screenRecorderDidStopRecordingWithErrorPreviewViewController?(screenRecorder: RPScreenRecorder, error: NSError, previewViewController: RPPreviewViewController): void;
|
|
|
|
screenRecorderDidStopRecordingWithPreviewViewControllerError?(screenRecorder: RPScreenRecorder, previewViewController: RPPreviewViewController, error: NSError): void;
|
|
}
|
|
declare var RPScreenRecorderDelegate: {
|
|
|
|
prototype: RPScreenRecorderDelegate;
|
|
};
|
|
|
|
declare class RPSystemBroadcastPickerView extends UIView implements NSCoding {
|
|
|
|
static alloc(): RPSystemBroadcastPickerView; // inherited from NSObject
|
|
|
|
static appearance(): RPSystemBroadcastPickerView; // inherited from UIAppearance
|
|
|
|
static appearanceForTraitCollection(trait: UITraitCollection): RPSystemBroadcastPickerView; // inherited from UIAppearance
|
|
|
|
static appearanceForTraitCollectionWhenContainedIn(trait: UITraitCollection, ContainerClass: typeof NSObject): RPSystemBroadcastPickerView; // inherited from UIAppearance
|
|
|
|
static appearanceForTraitCollectionWhenContainedInInstancesOfClasses(trait: UITraitCollection, containerTypes: NSArray<typeof NSObject> | typeof NSObject[]): RPSystemBroadcastPickerView; // inherited from UIAppearance
|
|
|
|
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): RPSystemBroadcastPickerView; // inherited from UIAppearance
|
|
|
|
static appearanceWhenContainedInInstancesOfClasses(containerTypes: NSArray<typeof NSObject> | typeof NSObject[]): RPSystemBroadcastPickerView; // inherited from UIAppearance
|
|
|
|
static new(): RPSystemBroadcastPickerView; // inherited from NSObject
|
|
|
|
preferredExtension: string;
|
|
|
|
showsMicrophoneButton: boolean;
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
encodeWithCoder(aCoder: NSCoder): void;
|
|
|
|
initWithCoder(aDecoder: NSCoder): this;
|
|
}
|
|
|
|
declare var RPVideoSampleOrientationKey: string;
|