| 80 | * This is a duck-typed interface to avoid circular imports. |
| 81 | */ |
| 82 | export interface SerializableLike { |
| 83 | lc_serializable: boolean; |
| 84 | lc_secrets?: Record<string, string>; |
| 85 | toJSON(): { |
| 86 | lc: number; |
| 87 | type: string; |
| 88 | id: string[]; |
| 89 | kwargs?: Record<string, unknown>; |
| 90 | }; |
| 91 | } |
| 92 | |
| 93 | export interface SerializableInterface { |
| 94 | get lc_id(): string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected