Skip to content

Commit f707f78

Browse files
author
selectthegang
committed
changed function name
1 parent 00b8edb commit f707f78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export class Client {
22
// Native
33
public entry(entry_name: string): Promise<unknown>;
4-
public entries(sort: String, page: Number, limit: Number, search_query: String): Promise<unknown>;
4+
public fetchEntries(sort: String, page: Number, limit: Number, search_query: String): Promise<unknown>;
55
public selfentry(owner_id: string): Promise<unknown>;
66
}

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Client {
2222
* @param {Number} limit How many entries will be returned per page.
2323
* @param {String} search_query The search query. This can either be the title, the id, or a fuzzy match for the title and content.
2424
*/
25-
async entries(sort, page, limit, search_query) {
25+
async fetchEntries(sort, page, limit, search_query) {
2626
// my arms hurt from typing so much
2727
}
2828

0 commit comments

Comments
 (0)