Hi, i want to use moralis cloud for my data storage. But i am getting this error that Moralis.Cloud not found.
How i am using this code
import Moralis from 'moralis'
/* Moralis init code */
const serverUrl = environment.moralis_dapp_url;
const appId = environment.moralis_app_id;
Moralis.start({ serverUrl, appId });
const res = await Moralis.Cloud.run("addUser", param);
Here I am getting error "Property ‘Cloud’ does not exist on type ‘{ Core: MoralisCore; Auth: MoralisAuth; Streams: MoralisStreams; EvmApi: MoralisEvmApi; SolApi: MoralisSolApi; start: (providedConfig?: Partial<…> | undefined) => Promise<…>; }’ "
Can you please help me?