import { Notification, toast } from '@/components/ui' import { generateBackgroundWorkers } from '@/proxy/background-worker/background-worker.service' export abstract class UiEvalService { static Init = () => { //console.log('init') } static ApiGenerateBackgroundWorkers = () => { const asyncCall = async () => { await generateBackgroundWorkers() } asyncCall() toast.push( {'Background Workers are being renewed.'} , { placement: 'top-center', }, ) } } const _global = (window || global) as any _global.UiEvalService = UiEvalService