/* Copyright (c) 2025 Betim Beja and Shko Online LLC Licensed under the MIT license. */ import type { SinonStub } from 'sinon'; import { stub } from 'sinon'; export class CopilotMock implements ComponentFramework.Copilot { executeEvent: SinonStub<[string,Record],Promise>; executePrompt: SinonStub<[string],Promise>; constructor(){ this.executeEvent = stub(); this.executePrompt = stub(); } }