Interface Destroyable

interface Destroyable {
    destroy(): Promise<void>;
}

Methods

Methods

  • Destroys a resource on the server. Returns a promise that resolves to true whene the operation has been completed

    Returns Promise<void>