()
| 454 | abstract _delete(): Promise<void>; |
| 455 | |
| 456 | public async delete(): Promise<void> { |
| 457 | return this._delete().then(() => { |
| 458 | this._onList = false; |
| 459 | globalEmit(`delete.${this.getCacheKey()}`, { |
| 460 | id: this.getPageId(), |
| 461 | type: this.getType(), |
| 462 | cacheKey: this.getCacheKey(), |
| 463 | }); |
| 464 | }); |
| 465 | } |
| 466 | |
| 467 | protected globalUpdateEvent; |
| 468 |
nothing calls this directly
no test coverage detected