1
1
import { error } from '@sveltejs/kit' ;
2
2
import { api } from './api' ;
3
- import type { PageServerLoad , Post , Patch , Delete } from './$types' ;
3
+ import type { PageServerLoad , Action } from './$types' ;
4
4
5
5
type Todo = {
6
6
uid : string ;
@@ -44,17 +44,17 @@ export const load: PageServerLoad = async ({ locals }) => {
44
44
throw error ( response . status ) ;
45
45
} ;
46
46
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 } ) => {
49
49
const form = await request . formData ( ) ;
50
50
51
51
await api ( 'POST' , `todos/${ locals . userid } ` , {
52
52
text : form . get ( 'text' )
53
53
} ) ;
54
54
} ;
55
55
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 } ) => {
58
58
const form = await request . formData ( ) ;
59
59
60
60
await api ( 'PATCH' , `todos/${ locals . userid } /${ form . get ( 'uid' ) } ` , {
@@ -63,8 +63,8 @@ export const PATCH: Patch = async ({ request, locals }) => {
63
63
} ) ;
64
64
} ;
65
65
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 } ) => {
68
68
const form = await request . formData ( ) ;
69
69
70
70
await api ( 'DELETE' , `todos/${ locals . userid } /${ form . get ( 'uid' ) } ` ) ;
0 commit comments