File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ export class Qiita extends Gateway {
262
262
* @param options.tags 投稿に付いたタグ一覧
263
263
* @return プロジェクト
264
264
*/
265
- public createProject = ( options ? : options . CreateProjectOptions ) => {
265
+ public createProject = ( options : options . CreateProjectOptions ) => {
266
266
return this . post < Project > ( `${ this . url } ${ this . version } /projects` , options ) ;
267
267
}
268
268
@@ -468,7 +468,7 @@ export class Qiita extends Gateway {
468
468
* @param options.tweet Twitterに投稿するかどうか (Twitter連携を有効化している場合のみ有効)
469
469
* @return 投稿
470
470
*/
471
- public createItem = ( options ? : options . CreateItemOptions ) => {
471
+ public createItem = ( options : options . CreateItemOptions ) => {
472
472
return this . post < Item > ( `${ this . url } ${ this . version } /items` , options ) ;
473
473
}
474
474
You can’t perform that action at this time.
0 commit comments