我收到以下错误消息:
Property 'App' does not exist on type 'typeof Realm'.ts(2339)
这是我使用的TypeScript:
const getRealmApp: React.FC = () => {
const appId = "<enter your Realm app ID here>"; // Set Realm app ID here.
const appConfig = {
id: appId,
timeout: 10000,
};
return new Realm.App(appConfig);
};
这是我的进口货
import * as Realm from "realm";