Skip to content

Commit 31a03ee

Browse files
committed
chore: regenerate
1 parent 0bc8423 commit 31a03ee

File tree

9 files changed

+333
-44
lines changed

9 files changed

+333
-44
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {}
33

4-
export default nextConfig;
4+
export default nextConfig

integration-tests/typescript-nextjs/src/app/globals.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
:root {
22
--max-width: 1100px;
33
--border-radius: 12px;
4-
--font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
4+
--font-mono:
5+
ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
56
"Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
67
"Fira Mono", "Droid Sans Mono", "Courier New", monospace;
78

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
import type { Metadata } from "next";
2-
import { Inter } from "next/font/google";
3-
import "./globals.css";
1+
import type {Metadata} from "next"
2+
import {Inter} from "next/font/google"
3+
import "./globals.css"
44

5-
const inter = Inter({ subsets: ["latin"] });
5+
const inter = Inter({subsets: ["latin"]})
66

77
export const metadata: Metadata = {
88
title: "Create Next App",
99
description: "Generated by create next app",
10-
};
10+
}
1111

1212
export default function RootLayout({
1313
children,
1414
}: Readonly<{
15-
children: React.ReactNode;
15+
children: React.ReactNode
1616
}>) {
1717
return (
1818
<html lang="en">
1919
<body className={inter.className}>{children}</body>
2020
</html>
21-
);
21+
)
2222
}

integration-tests/typescript-nextjs/src/app/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import Image from "next/image";
2-
import styles from "./page.module.css";
1+
import Image from "next/image"
2+
import styles from "./page.module.css"
33

44
export default function Home() {
55
return (
@@ -91,5 +91,5 @@ export default function Home() {
9191
</a>
9292
</div>
9393
</main>
94-
);
94+
)
9595
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import {_GET, _POST} from "../../../generated/todo-lists.yaml/attachments/route"
2+
3+
export const GET = _GET(async ({}, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({message: "not implemented"} as any)
6+
})
7+
export const POST = _POST(async ({body}, respond, context) => {
8+
// TODO: implementation
9+
return respond.withStatus(501).body({message: "not implemented"} as any)
10+
})

integration-tests/typescript-nextjs/src/generated/todo-lists.yaml/attachments/route.ts

Lines changed: 109 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)