langchain.js
    Preparing search index...

    Interface for objects that can be serialized. This is a duck-typed interface to avoid circular imports.

    interface SerializableLike {
        lc_secrets?: Record<string, string>;
        lc_serializable: boolean;
        toJSON(): {
            id: string[];
            kwargs?: Record<string, unknown>;
            lc: number;
            type: string;
        };
    }
    Index

    Properties

    lc_secrets?: Record<string, string>
    lc_serializable: boolean

    Methods

    • Returns { id: string[]; kwargs?: Record<string, unknown>; lc: number; type: string }