@copilotkit/runtime
Version:
<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />
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"];
}