@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
8 lines • 388 B
TypeScript
/// <reference types="powerapps-component-framework" />
import type { SinonStub } from 'sinon';
export declare class ResourcesMock implements ComponentFramework.Resources {
getResource: SinonStub<[id: string, success: (data: string) => void, failure: () => void], void>;
getString: SinonStub<[id: string], string>;
constructor();
}
//# sourceMappingURL=Resources.mock.d.ts.map