We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e74dcc commit 55a30afCopy full SHA for 55a30af
src/struct/PastebinClient.ts
@@ -11,12 +11,24 @@ import ClientUser from "./ClientUser"
11
* @property {string?} apiKey Your Pastebin API key
12
* @property {string?} username Your Pastebin username
13
* @property {string?} password Your Pastebin password
14
- * @property {string?} userKey The user key, obtained when logging in
+ * @property {string?} userKey Your Pastebin user key, obtained when logging in
15
*/
16
type PastebinCredentials = {
17
+ /**
18
+ * Your Pastebin API key
19
+ */
20
apiKey?: string
21
22
+ * Your Pastebin username
23
24
username?: string
25
26
+ * Your Pastebin password
27
28
password?: string
29
30
+ * Your Pastebin user key, obtained when logging in
31
32
userKey?: string
33
}
34
0 commit comments