SynapEditor API 3.3.0
    Preparing search index...

    Interface SynapEditorOpenDocumentData

    Converted document data passed to openDocumentByData.

    interface SynapEditorOpenDocumentData {
        docType: string;
        importImageMap?: Record<string, string>;
        importPath: string;
        name?: string;
        serializedData: number[];
        size?: number;
    }
    Index

    Properties

    docType: string

    The document format (e.g., 'hwpx', 'docx').

    importImageMap?: Record<string, string>

    An image path mapping object.

    importPath: string

    The import path used during conversion.

    name?: string

    The document file name.

    serializedData: number[]

    The serialized document binary data.

    size?: number

    The document file size in bytes.