Preparing search index...

    Interface for reading serialized data.

        // IReader is the interface for reading serialized data.
    // Its constructor is protected — you obtain an instance via
    // Yaml.createReader(data) rather than constructing it directly.
    const { Yaml } = await import('LensStudio:Serialization');

    const yamlString = 'key: value';
    const reader = Yaml.createReader(yamlString);
    console.log('IReader instance created from YAML string:', reader);

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Beta

      Returns the name of this object's type.

      Returns string

    • Beta

      Returns true if the object is of the specified type.

      Parameters

      • type: string

      Returns boolean