(prefix: string)
| 490 | } |
| 491 | |
| 492 | private generateUniqueId(prefix: string): string { |
| 493 | return `${prefix}-${Date.now()}-${Math.random().toString(36).substring(7)}` |
| 494 | } |
| 495 | |
| 496 | private setIsLoading(isLoading: boolean): void { |
| 497 | this.isLoading = isLoading |
no test coverage detected