function runInfo(): RunInfo
import { runInfo } from "@intuned/sdk/runtime" const info = runInfo(); console.log(info.runEnvironment); // Outputs the run environment, IDE or DEPLOYED console.log(info.runId); // Outputs the run ID, if available, in IDE run id will be undefined
RunInfo