/** * Embedded Python source for the Resolve bridge. Written to a temp file at * first launch and spawned with python3. * * Protocol: one JSON object per stdin line (request), one JSON object per * stdout line (response). All Resolve API access is wrapped in try/except so * a single failed call cannot kill the bridge. * * Request: {"id": "1", "method": "get_timeline", "params": {}} * Response: {"id": "1", "ok": true, "result": {...}} * {"id": "1", "ok": false, "error": "..."} * * The bridge keeps the resolve / project / timeline references fresh by * re-fetching them per call (cheap, and handles the user switching projects). */ export declare const BRIDGE_PY: string; //# sourceMappingURL=bridge-source.d.ts.map