やりたいこと
以下のような TypeScript を JSON ファイルに変換したい
export default { openapi: "3.1.0" };
import Pets from "#/components/schemas/Pets";
export default {
get: {
responses: {
"200": {
content: {
"application/json": {
schema: Pets,
},
},
},
},
},
};
export default { type: "array" };