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 {
262262 * @param options.tags 投稿に付いたタグ一覧
263263 * @return プロジェクト
264264 */
265- public createProject = ( options ? : options . CreateProjectOptions ) => {
265+ public createProject = ( options : options . CreateProjectOptions ) => {
266266 return this . post < Project > ( `${ this . url } ${ this . version } /projects` , options ) ;
267267 }
268268
@@ -468,7 +468,7 @@ export class Qiita extends Gateway {
468468 * @param options.tweet Twitterに投稿するかどうか (Twitter連携を有効化している場合のみ有効)
469469 * @return 投稿
470470 */
471- public createItem = ( options ? : options . CreateItemOptions ) => {
471+ public createItem = ( options : options . CreateItemOptions ) => {
472472 return this . post < Item > ( `${ this . url } ${ this . version } /items` , options ) ;
473473 }
474474
You can’t perform that action at this time.
0 commit comments