A factory interface for creating ISharedDocument objects.

interface ISharedFactory {
    collaborative?: boolean;
    createNew(options): undefined | ISharedDocument;
}

Properties

Methods

Properties

collaborative?: boolean

Whether the IDrive supports real-time collaboration or not. Note: If it is not provided, it is false by default.

Methods