@r2wa-org/eden
v0.0.72
Published
Elysia API type definitions for Eden Treaty
Downloads
2,521
Readme
@r2wa/eden
Installation
bun add @elysiajs/eden
bun add -d elysia
bun add @r2wa-org/edenExample
// client.ts
import { treaty } from "@elysiajs/eden";
import type { App } from "@r2wa-org/eden";
const app = treaty<App>("localhost:3000");
app.api.error_messages.get().then((res) => {
res.data?.zh;
});