Skip to content

Commit 55a30af

Browse files
committed
docs(PastebinCredentials): add JSDoc descriptions to properties
1 parent 2e74dcc commit 55a30af

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/struct/PastebinClient.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,24 @@ import ClientUser from "./ClientUser"
1111
* @property {string?} apiKey Your Pastebin API key
1212
* @property {string?} username Your Pastebin username
1313
* @property {string?} password Your Pastebin password
14-
* @property {string?} userKey The user key, obtained when logging in
14+
* @property {string?} userKey Your Pastebin user key, obtained when logging in
1515
*/
1616
type PastebinCredentials = {
17+
/**
18+
* Your Pastebin API key
19+
*/
1720
apiKey?: string
21+
/**
22+
* Your Pastebin username
23+
*/
1824
username?: string
25+
/**
26+
* Your Pastebin password
27+
*/
1928
password?: string
29+
/**
30+
* Your Pastebin user key, obtained when logging in
31+
*/
2032
userKey?: string
2133
}
2234

0 commit comments

Comments
 (0)