import { TaskRepository as Service } from './repository'; declare const SERVICE_NAME = "state.tasks"; declare module '../core/platform' { interface PlatformServiceNameType { /** * @see {@link Service TaskRepository} */ TaskRepository: typeof SERVICE_NAME; } interface LimeWebComponentPlatform { get(name: PlatformServiceNameType['TaskRepository']): Service; } } export {};