The options used to instantiate a ISharedDocument

interface ISharedFactoryOptions {
    collaborative?: boolean;
    contentType: string;
    format: FileFormat;
    path: string;
}

Properties

collaborative?: boolean

Wether the document is collaborative or not.

The default value is true.

contentType: string

The content type of the document.

format: FileFormat

The format of the document. If null, the document won't be collaborative.

path: string

The path of the file.