better-auth
Version:
The most comprehensive authentication framework for TypeScript.
33 lines • 702 B
text/typescript
//#region src/api/routes/ok.d.ts
declare const ok: import("better-call").StrictEndpoint<"/ok", {
method: "GET";
metadata: {
openapi: {
description: string;
responses: {
"200": {
description: string;
content: {
"application/json": {
schema: {
type: "object";
properties: {
ok: {
type: string;
description: string;
};
};
required: string[];
};
};
};
};
};
};
scope: "server";
};
}, {
ok: boolean;
}>;
//#endregion
export { ok };