File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export interface CreateTemplateOptions {
23
23
title : string ;
24
24
}
25
25
26
- export type UpdateTemplateOptions = Partial < CreateTemplateOptions > ;
26
+ export type UpdateTemplateOptions = CreateTemplateOptions ;
27
27
28
28
export interface CreateProjectOptions {
29
29
/** このプロジェクトが進行中かどうか */
@@ -36,7 +36,7 @@ export interface CreateProjectOptions {
36
36
tags : Tagging [ ] ;
37
37
}
38
38
39
- export type UpdateProjectOptions = Partial < CreateProjectOptions > ;
39
+ export type UpdateProjectOptions = CreateProjectOptions ;
40
40
41
41
export interface FetchItemsOptions extends PaginationOptions {
42
42
/** 検索クエリ */
@@ -62,4 +62,4 @@ export interface CreateItemOptions {
62
62
tweet ?: boolean ;
63
63
}
64
64
65
- export type UpdateItemOptions = Partial < CreateItemOptions > ;
65
+ export type UpdateItemOptions = CreateItemOptions ;
You can’t perform that action at this time.
0 commit comments