@@ -223,7 +223,7 @@ corresponding `publicClient` it is `/public/<moduleName>/`.
223
223
224
224
#### Defined in
225
225
226
- [ baseclient.ts:239] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L239 )
226
+ [ baseclient.ts:239] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L239 )
227
227
228
228
## Methods
229
229
@@ -247,7 +247,7 @@ Usually called via [`on()`](#on)
247
247
248
248
#### Defined in
249
249
250
- [ eventhandling.ts:29] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/eventhandling.ts#L29 )
250
+ [ eventhandling.ts:29] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/eventhandling.ts#L29 )
251
251
252
252
***
253
253
@@ -286,7 +286,7 @@ client.cache('lists/', 'SEEN');
286
286
287
287
#### Defined in
288
288
289
- [ baseclient.ts:683] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L683 )
289
+ [ baseclient.ts:683] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L683 )
290
290
291
291
***
292
292
@@ -344,21 +344,21 @@ client.declareType('todo-item', {
344
344
345
345
#### Defined in
346
346
347
- [ baseclient.ts:733] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L733 )
347
+ [ baseclient.ts:733] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L733 )
348
348
349
349
***
350
350
351
351
### getAll()
352
352
353
- > ** getAll** (` path ` , ` maxAge ` ?): ` Promise ` \< ` unknown ` \>
353
+ > ** getAll** (` path ` ? , ` maxAge ` ?): ` Promise ` \< ` unknown ` \>
354
354
355
355
Get all objects directly below a given path.
356
356
357
357
#### Parameters
358
358
359
- • ** path** : ` string `
359
+ • ** path? ** : ` string `
360
360
361
- Path to the folder. Must end in a forward slash.
361
+ (optional) Path to the folder. Must end in a forward slash.
362
362
363
363
• ** maxAge?** : ` number ` \| ` false `
364
364
@@ -420,7 +420,7 @@ Example response:
420
420
421
421
#### Defined in
422
422
423
- [ baseclient.ts:395] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L395 )
423
+ [ baseclient.ts:395] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L395 )
424
424
425
425
***
426
426
@@ -468,7 +468,7 @@ client.getFile('path/to/some/image').then(file => {
468
468
469
469
#### Defined in
470
470
471
- [ baseclient.ts:456] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L456 )
471
+ [ baseclient.ts:456] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L456 )
472
472
473
473
***
474
474
@@ -499,7 +499,7 @@ The full URL of the item, including the storage origin, or `undefined`
499
499
500
500
#### Defined in
501
501
502
- [ baseclient.ts:655] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L655 )
502
+ [ baseclient.ts:655] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L655 )
503
503
504
504
***
505
505
@@ -569,7 +569,7 @@ Example of a listing object:
569
569
570
570
#### Defined in
571
571
572
- [ baseclient.ts:326] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L326 )
572
+ [ baseclient.ts:326] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L326 )
573
573
574
574
***
575
575
@@ -605,7 +605,7 @@ client.getObject('/path/to/object').then(obj => console.log(obj));
605
605
606
606
#### Defined in
607
607
608
- [ baseclient.ts:540] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L540 )
608
+ [ baseclient.ts:540] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L540 )
609
609
610
610
***
611
611
@@ -641,7 +641,7 @@ remoteStorage.on('connected', function() {
641
641
642
642
#### Defined in
643
643
644
- [ eventhandling.ts:55] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/eventhandling.ts#L55 )
644
+ [ eventhandling.ts:55] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/eventhandling.ts#L55 )
645
645
646
646
***
647
647
@@ -669,7 +669,7 @@ client.remove('path/to/object').then(() => console.log('item deleted'));
669
669
670
670
#### Defined in
671
671
672
- [ baseclient.ts:629] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L629 )
672
+ [ baseclient.ts:629] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L629 )
673
673
674
674
***
675
675
@@ -691,7 +691,7 @@ Remove a previously installed event handler
691
691
692
692
#### Defined in
693
693
694
- [ eventhandling.ts:62] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/eventhandling.ts#L62 )
694
+ [ eventhandling.ts:62] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/eventhandling.ts#L62 )
695
695
696
696
***
697
697
@@ -716,7 +716,7 @@ A new `BaseClient` operating on a subpath of the current base path
716
716
717
717
#### Defined in
718
718
719
- [ baseclient.ts:272] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L272 )
719
+ [ baseclient.ts:272] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L272 )
720
720
721
721
***
722
722
@@ -772,7 +772,7 @@ fileReader.readAsArrayBuffer(file);
772
772
773
773
#### Defined in
774
774
775
- [ baseclient.ts:502] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L502 )
775
+ [ baseclient.ts:502] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L502 )
776
776
777
777
***
778
778
@@ -825,7 +825,7 @@ client.storeObject('bookmark', path, bookmark)
825
825
826
826
#### Defined in
827
827
828
- [ baseclient.ts:588] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L588 )
828
+ [ baseclient.ts:588] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L588 )
829
829
830
830
***
831
831
@@ -862,4 +862,4 @@ var result = client.validate(document);
862
862
863
863
#### Defined in
864
864
865
- [ baseclient.ts:765] ( https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754 /src/baseclient.ts#L765 )
865
+ [ baseclient.ts:765] ( https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d /src/baseclient.ts#L765 )
0 commit comments