TypeScript SDK scaffold (#4455)

This commit is contained in:
pakrym-oai
2025-09-29 13:27:13 -07:00
committed by GitHub
parent 83a4d4d8ed
commit adbc38a978
13 changed files with 4600 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import { describe, expect, it } from "vitest";
import { Codex } from "../src/index.js";
describe("Codex", () => {
it("exposes the placeholder API", () => {
const client = new Codex();
});
});