Type alias RecentDocument

RecentDocument: {
    contentType: string;
    factory?: string;
    path: string;
    root: string;
}

The interface for a recent document.

Type declaration

  • contentType: string

    The document content type or directory literal for directories.

  • Optional factory?: string

    The factory that was used when the document was most recently opened or closed.

  • path: string

    The path to the document.

  • root: string

    The server root path.

    Allows to select only the currently accessible documents.