SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
68d7816 verified
Raw
History Blame Contribute Delete
342 Bytes
import { createDecorator, type ServiceIdentifier } from '#/_base/di/instantiation';
export interface IAgentPluginService {
readonly _serviceBrand: undefined;
refreshSessionStart(): Promise<void>;
}
export const IAgentPluginService: ServiceIdentifier<IAgentPluginService> =
createDecorator<IAgentPluginService>('agentPluginService');