qt.d.ts: define QmlObject as unknown

This commit is contained in:
Peter Fajdiga
2023-09-01 14:58:13 +02:00
parent 566c8fe53d
commit 3b3bb679de

2
src/extern/qt.d.ts vendored
View File

@@ -8,7 +8,7 @@ declare const Qt: {
createQmlObject(qml: string, parent: QmlObject);
};
type QmlObject = any;
type QmlObject = unknown;
type QByteArray = string;