We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b388043 commit 043ac8dCopy full SHA for 043ac8d
src/client/Qiita.ts
@@ -129,7 +129,6 @@ export class Qiita extends Gateway {
129
* @param options.page ページ番号 (1から100まで)
130
* @param options.perPage 1ページあたりに含まれる要素数 (1から100まで)
131
* @param options.sort 並び順 (countで投稿数順、nameで名前順)
132
- * @param options.q [ドキュメント記載無し] 検索クエリ
133
* @return タグ一覧を返す非同期反復可能オブジェクト
134
*/
135
public fetchTags = (options?: options.FetchTagsOptions) => {
src/client/options.ts
@@ -10,8 +10,6 @@ export interface PaginationOptions {
10
export interface FetchTagsOptions extends PaginationOptions {
11
/** 並び順 (countで投稿数順、nameで名前順) */
12
sort?: 'count'|'name';
13
- /** [ドキュメント記載無し] 検索クエリ */
14
- q?: string;
15
}
16
17
export interface CreateTemplateOptions {
0 commit comments