UNPKG

@web-atoms/core

Version:
22 lines (17 loc) 467 B
import { IDisposable } from "../core/types"; import { RegisterSingleton } from "../di/RegisterSingleton"; export interface IBackgroundTaskInfo { title?: string; description?: string; icon?: string; } @RegisterSingleton export class BusyIndicatorService { public createIndicator(info?: IBackgroundTaskInfo): IDisposable { return { dispose() { // do nothing. } }; } }