@infrasoftbe/vnv-sdk
    Preparing search index...

    Interface DocumentLayer

    Represents a document layer interface for handling document operations.

    DocumentLayer

    get

    Type parameter extending array or null

    Promise resolving to either any type or array of any type based on T

    update

    Result of the update operation

    delete

    Result of the delete operation

    download

    Result of the download operation

    interface DocumentLayer {
        layers: {};
        delete(): any;
        download(): any;
        get<T extends any[] = null>(): Promise<T extends null ? any : any[]>;
        update(): any;
    }
    Index

    Properties

    Methods

    Properties

    layers: {}

    Object containing layer information

    Methods

    • Type Parameters

      • T extends any[] = null

      Returns Promise<T extends null ? any : any[]>