mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 12:19:06 +00:00
15 lines
274 B
TypeScript
15 lines
274 B
TypeScript
import { defineConfig } from "@hey-api/openapi-ts";
|
|
|
|
export default defineConfig({
|
|
client: "axios",
|
|
name: "OpenApi",
|
|
input: "http://127.0.0.1:1250/openapi.json",
|
|
output: {
|
|
path: "./app/api",
|
|
format: "prettier",
|
|
},
|
|
services: {
|
|
asClass: true,
|
|
},
|
|
});
|