@@ -221,9 +221,9 @@ Base path, which this [BaseClient](BaseClient.md) operates on.
221221For the module's ` privateClient ` this would be the module name, and for the
222222corresponding ` publicClient ` it is ` /public/<moduleName>/ ` .
223223
224- #### Source
224+ #### Defined in
225225
226- [ baseclient.ts:239] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L239 )
226+ [ baseclient.ts:239] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L239 )
227227
228228## Methods
229229
@@ -245,9 +245,9 @@ Usually called via [`on()`](#on)
245245
246246` void `
247247
248- #### Source
248+ #### Defined in
249249
250- [ eventhandling.ts:29] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/eventhandling.ts#L29 )
250+ [ eventhandling.ts:29] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/eventhandling.ts#L29 )
251251
252252***
253253
@@ -266,7 +266,7 @@ for a detailed description of the available strategies.
266266
267267Path to cache
268268
269- • ** strategy** : ` "ALL" ` \| ` "SEEN" ` \| ` "FLUSH" ` = ` 'ALL' `
269+ • ** strategy** : ` "ALL" ` \| ` "SEEN" ` \| ` "FLUSH" ` = ` 'ALL' `
270270
271271Caching strategy. One of 'ALL', 'SEEN', or FLUSH'.
272272 Defaults to 'ALL'.
@@ -284,9 +284,9 @@ The same `BaseClient` instance this method is called on to allow
284284client .cache (' lists/' , ' SEEN' );
285285```
286286
287- #### Source
287+ #### Defined in
288288
289- [ baseclient.ts:683] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L683 )
289+ [ baseclient.ts:683] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L683 )
290290
291291***
292292
@@ -342,9 +342,9 @@ client.declareType('todo-item', {
342342})
343343```
344344
345- #### Source
345+ #### Defined in
346346
347- [ baseclient.ts:733] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L733 )
347+ [ baseclient.ts:733] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L733 )
348348
349349***
350350
@@ -418,9 +418,9 @@ Example response:
418418> [ storeFile] ( BaseClient.md#storefile ) instead of [ storeObject] ( BaseClient.md#storeobject ) ), the object's value is
419419> filled in with ` true ` .
420420
421- #### Source
421+ #### Defined in
422422
423- [ baseclient.ts:395] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L395 )
423+ [ baseclient.ts:395] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L395 )
424424
425425***
426426
@@ -466,9 +466,9 @@ client.getFile('path/to/some/image').then(file => {
466466});
467467```
468468
469- #### Source
469+ #### Defined in
470470
471- [ baseclient.ts:456] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L456 )
471+ [ baseclient.ts:456] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L456 )
472472
473473***
474474
@@ -497,9 +497,9 @@ The full URL of the item, including the storage origin, or `undefined`
497497> backends. The GitHub issues for implementing it for Dropbox and Google
498498> are 1052 and 1054.
499499
500- #### Source
500+ #### Defined in
501501
502- [ baseclient.ts:655] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L655 )
502+ [ baseclient.ts:655] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L655 )
503503
504504***
505505
@@ -567,9 +567,9 @@ Example of a listing object:
567567> item names as properties with ` true ` as value. See issues 721 and 1108 —
568568> contributions welcome!
569569
570- #### Source
570+ #### Defined in
571571
572- [ baseclient.ts:326] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L326 )
572+ [ baseclient.ts:326] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L326 )
573573
574574***
575575
@@ -603,9 +603,9 @@ A promise, resolving with the requested object, or `null` if non-existent
603603client .getObject (' /path/to/object' ).then (obj => console .log (obj ));
604604```
605605
606- #### Source
606+ #### Defined in
607607
608- [ baseclient.ts:540] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L540 )
608+ [ baseclient.ts:540] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L540 )
609609
610610***
611611
@@ -639,9 +639,9 @@ remoteStorage.on('connected', function() {
639639});
640640```
641641
642- #### Source
642+ #### Defined in
643643
644- [ eventhandling.ts:55] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/eventhandling.ts#L55 )
644+ [ eventhandling.ts:55] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/eventhandling.ts#L55 )
645645
646646***
647647
@@ -667,9 +667,9 @@ Path relative to the module root.
667667client .remove (' path/to/object' ).then (() => console .log (' item deleted' ));
668668```
669669
670- #### Source
670+ #### Defined in
671671
672- [ baseclient.ts:629] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L629 )
672+ [ baseclient.ts:629] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L629 )
673673
674674***
675675
@@ -689,9 +689,9 @@ Remove a previously installed event handler
689689
690690` void `
691691
692- #### Source
692+ #### Defined in
693693
694- [ eventhandling.ts:62] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/eventhandling.ts#L62 )
694+ [ eventhandling.ts:62] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/eventhandling.ts#L62 )
695695
696696***
697697
@@ -714,9 +714,9 @@ The path to scope the new client to
714714
715715A new ` BaseClient ` operating on a subpath of the current base path
716716
717- #### Source
717+ #### Defined in
718718
719- [ baseclient.ts:272] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L272 )
719+ [ baseclient.ts:272] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L272 )
720720
721721***
722722
@@ -770,9 +770,9 @@ fileReader.onload = function () {
770770fileReader .readAsArrayBuffer (file);
771771```
772772
773- #### Source
773+ #### Defined in
774774
775- [ baseclient.ts:502] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L502 )
775+ [ baseclient.ts:502] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L502 )
776776
777777***
778778
@@ -823,9 +823,9 @@ client.storeObject('bookmark', path, bookmark)
823823 .catch ((err ) => console .log (err ));
824824```
825825
826- #### Source
826+ #### Defined in
827827
828- [ baseclient.ts:588] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L588 )
828+ [ baseclient.ts:588] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L588 )
829829
830830***
831831
@@ -860,6 +860,6 @@ var result = client.validate(document);
860860// }
861861```
862862
863- #### Source
863+ #### Defined in
864864
865- [ baseclient.ts:765] ( https://github.com/remotestorage/remotestorage.js/blob/65f5343823175e12058c01e23219a8cc9d34932b /src/baseclient.ts#L765 )
865+ [ baseclient.ts:765] ( https://github.com/remotestorage/remotestorage.js/blob/9625dcb362d5fe51be7b7fbdbb04492cfbf19644 /src/baseclient.ts#L765 )
0 commit comments