mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
12 lines
172 B
TypeScript
12 lines
172 B
TypeScript
|
import { Task } from '$/types'
|
||
|
|
||
|
export type Methods = {
|
||
|
patch: {
|
||
|
reqBody: Partial<Pick<Task, 'label' | 'done'>>
|
||
|
status: 204
|
||
|
}
|
||
|
delete: {
|
||
|
status: 204
|
||
|
}
|
||
|
}
|