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