Skip to main content

ai_agent/types/
notebook.rs

1// Source: ~/claudecode/openclaudecode/src/types/notebook.ts
2
3use serde::{Deserialize, Serialize};
4
5/// A notebook cell represented as a flexible record type.
6/// In TypeScript this is Record<string, unknown>, mapped to a HashMap in Rust.
7pub type NotebookCell = std::collections::HashMap<String, serde_json::Value>;