@@ -23,31 +23,31 @@ new PastebinClient(apiKey, username, password)
2323| password | Your Pastebin password | string | ` null ` |
2424
2525### credentials
26- Your Pastebin credentials.
26+ Your Pastebin credentials.
2727** Type: [ Object] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object ) **
2828
2929#### credentials.apiKey
30- Your Pastebin API key.
30+ Your Pastebin API key.
3131** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
3232
3333#### credentials.username
34- Your Pastebin username.
34+ Your Pastebin username.
3535** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
3636
3737#### credentials.password
38- Your Pastebin password.
38+ Your Pastebin password.
3939** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
4040
4141### user
42- The user the client logged in with, if it has.
42+ The user the client logged in with, if it has.
4343** Type: ?[ ClientUser] ( #ClientUser ) **
4444
4545### users
46- All of the cached users.
46+ All of the cached users.
4747** Type: ?[ UserStore] ( #UserStore ) **
4848
4949### pastes
50- All of the cached pastes.
50+ All of the cached pastes.
5151** Type: ?[ PasteStore] ( #PasteStore ) **
5252
5353### login()
@@ -98,55 +98,55 @@ new Paste(client, data)
9898| data.hits | The number of times anyone saw the paste | number | ` null ` |
9999
100100### client
101- The client used to get this paste.
101+ The client used to get this paste.
102102** Type: [ PastebinClient] ( #PastebinClient ) **
103103
104104### key
105- The key of this paste.
105+ The key of this paste.
106106** Type: [ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
107107
108108### url
109- The URL of this paste.
109+ The URL of this paste.
110110** Type: [ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
111111
112112### title
113- The title of this paste.
113+ The title of this paste.
114114** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
115115
116116### author
117- The author of this paste.
117+ The author of this paste.
118118** Type: ?[ User] ( #User ) **
119119
120120### content
121- The content of this paste.
121+ The content of this paste.
122122** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
123123
124124### size
125- The length of the content of this paste.
125+ The length of the content of this paste.
126126** Type: ?[ number] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number ) **
127127
128128### date
129- The date this paste was posted.
129+ The date this paste was posted.
130130** Type: ?[ Date] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date ) **
131131
132132### format
133- The format of this paste.
133+ The format of this paste.
134134** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
135135
136136### privacy
137- The privacy setting of this paste.
137+ The privacy setting of this paste.
138138** Type: ?[ number] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number ) **
139139
140140### expiry
141- The expiry time of this paste.
141+ The expiry time of this paste.
142142** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
143143
144144### expiryDate
145- The expiry date of this paste.
145+ The expiry date of this paste.
146146** Type: ?[ Date] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date ) **
147147
148148### hits
149- The number of times anyone saw this paste.
149+ The number of times anyone saw this paste.
150150** Type: ?[ number] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number ) **
151151
152152### fetch()
@@ -176,15 +176,15 @@ new User(client, username)
176176| username | The user's username | string | |
177177
178178### client
179- The client used to get this user.
179+ The client used to get this user.
180180** Type: [ PastebinClient] ( #PastebinClient ) **
181181
182182### username
183- This user's username.
183+ This user's username.
184184** Type: [ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
185185
186186### me
187- Whether this user is the same as the client's user.
187+ Whether this user is the same as the client's user.
188188** Type: [ boolean] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean ) **
189189
190190## ClientUser * extends User*
@@ -211,43 +211,43 @@ new ClientUser(client, data)
211211| data.pro | Whether the user is a PRO account | boolean | ` null ` |
212212
213213### username
214- This user's username.
214+ This user's username.
215215** Type: [ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
216216
217217### format
218- This user's format setting.
218+ This user's format setting.
219219** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
220220
221221### expiry
222- This user's expiry setting.
222+ This user's expiry setting.
223223** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
224224
225225### avatarURL
226- This user's avatar URL.
226+ This user's avatar URL.
227227** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
228228
229229### privacy
230- This user's privacy setting.
230+ This user's privacy setting.
231231** Type: ?[ number] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number ) **
232232
233233### website
234- This user's website.
234+ This user's website.
235235** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
236236
237237### email
238- This user's e-mail.
238+ This user's e-mail.
239239** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
240240
241241### location
242- This user's location.
242+ This user's location.
243243** Type: ?[ string] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String ) **
244244
245245### pro
246- Whether this user is a PRO account.
246+ Whether this user is a PRO account.
247247** Type: ?[ boolean] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean ) **
248248
249249### pastes
250- All of this user's cached pastes.
250+ All of this user's cached pastes.
251251** Type: ?[ UserPasteStore] ( #UserPasteStore ) **
252252
253253## PasteStore * extends Map*
@@ -265,7 +265,7 @@ new PasteStore(client, entries)
265265| entries | | Array<string, Paste> | ` null ` |
266266
267267### client
268- The client this store belongs to.
268+ The client this store belongs to.
269269** Type: [ PastebinClient] ( #PastebinClient ) **
270270
271271### fetch()
@@ -310,7 +310,7 @@ new UserStore(client, entries)
310310| entries | | Array<string, Paste> | ` null ` |
311311
312312### client
313- The client this store belongs to.
313+ The client this store belongs to.
314314** Type: [ PastebinClient] ( #PastebinClient ) **
315315
316316### fetch()
@@ -340,11 +340,11 @@ new UserPasteStore()
340340| entries | | Array<string, Paste> | ` null ` |
341341
342342### client
343- The client this store belongs to.
343+ The client this store belongs to.
344344** Type: [ PastebinClient] ( #PastebinClient ) **
345345
346346### user
347- The user this store belongs to.
347+ The user this store belongs to.
348348** Type: [ User] ( #User ) **
349349
350350### fetch()
0 commit comments