ci: build

This commit is contained in:
Nathan Walker
2025-02-25 14:44:58 -08:00
parent 803c472264
commit cb92903d1e

View File

@ -28,3 +28,11 @@ declare var NativeScriptEmbedderDelegate: {
prototype: NativeScriptEmbedderDelegate; prototype: NativeScriptEmbedderDelegate;
}; };
declare class NativeScriptViewFactory extends NSObject {
static getKeyWindow(): UIWindow;
static shared: NativeScriptViewFactory;
views: NSMutableDictionary<string, any>;
viewCreator: (id: string, ctrl: UIViewController) => void;
viewDestroyer: (id: string) => void;
}