@copilotkit/runtime
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
14 lines (12 loc) • 596 B
TypeScript
import "@jest/globals";
declare global {
const jest: (typeof import("@jest/globals"))["jest"];
const expect: (typeof import("@jest/globals"))["expect"];
const test: (typeof import("@jest/globals"))["test"];
const describe: (typeof import("@jest/globals"))["describe"];
const beforeEach: (typeof import("@jest/globals"))["beforeEach"];
const afterEach: (typeof import("@jest/globals"))["afterEach"];
const beforeAll: (typeof import("@jest/globals"))["beforeAll"];
const afterAll: (typeof import("@jest/globals"))["afterAll"];
const it: (typeof import("@jest/globals"))["it"];
}