Skip to content

Commit 99690ae

Browse files
committed
fix types in create-svelte template
1 parent 51900fc commit 99690ae

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/create-svelte/templates/default/src/routes/todos/+page.server.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { error } from '@sveltejs/kit';
22
import { api } from './api';
3-
import type { PageServerLoad, Post, Patch, Delete } from './$types';
3+
import type { PageServerLoad, Action } from './$types';
44

55
type Todo = {
66
uid: string;
@@ -44,17 +44,17 @@ export const load: PageServerLoad = async ({ locals }) => {
4444
throw error(response.status);
4545
};
4646

47-
/** @type {import('./$types').Post} */
48-
export const POST: Post = async ({ request, locals }) => {
47+
/** @type {import('./$types').Action} */
48+
export const POST: Action = async ({ request, locals }) => {
4949
const form = await request.formData();
5050

5151
await api('POST', `todos/${locals.userid}`, {
5252
text: form.get('text')
5353
});
5454
};
5555

56-
/** @type {import('./$types').Patch} */
57-
export const PATCH: Patch = async ({ request, locals }) => {
56+
/** @type {import('./$types').Action} */
57+
export const PATCH: Action = async ({ request, locals }) => {
5858
const form = await request.formData();
5959

6060
await api('PATCH', `todos/${locals.userid}/${form.get('uid')}`, {
@@ -63,8 +63,8 @@ export const PATCH: Patch = async ({ request, locals }) => {
6363
});
6464
};
6565

66-
/** @type {import('./$types').Delete} */
67-
export const DELETE: Delete = async ({ request, locals }) => {
66+
/** @type {import('./$types').Action} */
67+
export const DELETE: Action = async ({ request, locals }) => {
6868
const form = await request.formData();
6969

7070
await api('DELETE', `todos/${locals.userid}/${form.get('uid')}`);

0 commit comments

Comments
 (0)