@@ -52,7 +52,7 @@ export class PersistedCache implements Cache {
52
52
*
53
53
* @method put
54
54
* @param {StructuredDocument } doc
55
- * @returns {ResourceDocument }
55
+ * @return {ResourceDocument }
56
56
* @internal
57
57
*/
58
58
put < T > ( doc : StructuredDocument < T > | { content : T } ) : ResourceDocument {
@@ -96,7 +96,7 @@ export class PersistedCache implements Cache {
96
96
* @method patch
97
97
* @internal
98
98
* @param op the operation to perform
99
- * @returns {void }
99
+ * @return {void }
100
100
*/
101
101
patch ( op : Operation ) : void {
102
102
this . _cache . patch ( op ) ;
@@ -144,7 +144,7 @@ export class PersistedCache implements Cache {
144
144
* @method peek
145
145
* @internal
146
146
* @param {StableRecordIdentifier | StableDocumentIdentifier } identifier
147
- * @returns {ResourceDocument | ResourceBlob | null } the known resource data
147
+ * @return {ResourceDocument | ResourceBlob | null } the known resource data
148
148
*/
149
149
peek < T = unknown > ( identifier : StableRecordIdentifier < TypeFromInstanceOrString < T > > ) : T | null ;
150
150
peek ( identifier : StableDocumentIdentifier ) : ResourceDocument | null ;
@@ -158,7 +158,7 @@ export class PersistedCache implements Cache {
158
158
*
159
159
* @method peekRequest
160
160
* @param {StableDocumentIdentifier }
161
- * @returns {StableDocumentIdentifier | null }
161
+ * @return {StableDocumentIdentifier | null }
162
162
* @internal
163
163
*/
164
164
peekRequest ( identifier : StableDocumentIdentifier ) : StructuredDocument < ResourceDocument > | null {
@@ -173,7 +173,7 @@ export class PersistedCache implements Cache {
173
173
* @param identifier
174
174
* @param data
175
175
* @param hasRecord
176
- * @returns {void | string[] } if `hasRecord` is true then calculated key changes should be returned
176
+ * @return {void | string[] } if `hasRecord` is true then calculated key changes should be returned
177
177
*/
178
178
upsert ( identifier : StableRecordIdentifier , data : ResourceBlob , hasRecord : boolean ) : void | string [ ] {
179
179
return this . _cache . upsert ( identifier , data , hasRecord ) ;
@@ -191,7 +191,7 @@ export class PersistedCache implements Cache {
191
191
*
192
192
* @method fork
193
193
* @internal
194
- * @returns Promise<Cache>
194
+ * @return Promise<Cache>
195
195
*/
196
196
fork ( ) : Promise < Cache > {
197
197
return this . _cache . fork ( ) ;
@@ -207,7 +207,7 @@ export class PersistedCache implements Cache {
207
207
* @method merge
208
208
* @param {Cache } cache
209
209
* @internal
210
- * @returns Promise<void>
210
+ * @return Promise<void>
211
211
*/
212
212
merge ( cache : Cache ) : Promise < void > {
213
213
return this . _cache . merge ( cache ) ;
@@ -259,7 +259,7 @@ export class PersistedCache implements Cache {
259
259
* via `cache.hydrate`.
260
260
*
261
261
* @method dump
262
- * @returns {Promise<ReadableStream> }
262
+ * @return {Promise<ReadableStream> }
263
263
* @internal
264
264
*/
265
265
dump ( ) : Promise < ReadableStream < unknown > > {
@@ -280,7 +280,7 @@ export class PersistedCache implements Cache {
280
280
*
281
281
* @method hydrate
282
282
* @param {ReadableStream } stream
283
- * @returns {Promise<void> }
283
+ * @return {Promise<void> }
284
284
* @internal
285
285
*/
286
286
hydrate ( stream : ReadableStream < unknown > ) : Promise < void > {
@@ -368,7 +368,7 @@ export class PersistedCache implements Cache {
368
368
* @internal
369
369
* @param identifier
370
370
* @param propertyName
371
- * @returns {unknown }
371
+ * @return {unknown }
372
372
*/
373
373
getAttr ( identifier : StableRecordIdentifier , field : string ) : Value | undefined {
374
374
return this . _cache . getAttr ( identifier , field ) ;
@@ -405,7 +405,7 @@ export class PersistedCache implements Cache {
405
405
* @method hasChangedAttrs
406
406
* @internal
407
407
* @param identifier
408
- * @returns {boolean }
408
+ * @return {boolean }
409
409
*/
410
410
hasChangedAttrs ( identifier : StableRecordIdentifier ) : boolean {
411
411
return this . _cache . hasChangedAttrs ( identifier ) ;
@@ -417,7 +417,7 @@ export class PersistedCache implements Cache {
417
417
* @method rollbackAttrs
418
418
* @internal
419
419
* @param identifier
420
- * @returns the names of attributes that were restored
420
+ * @return the names of attributes that were restored
421
421
*/
422
422
rollbackAttrs ( identifier : StableRecordIdentifier ) : string [ ] {
423
423
return this . _cache . rollbackAttrs ( identifier ) ;
@@ -492,7 +492,7 @@ export class PersistedCache implements Cache {
492
492
* @internal
493
493
* @param identifier
494
494
* @param propertyName
495
- * @returns resource relationship object
495
+ * @return resource relationship object
496
496
*/
497
497
getRelationship (
498
498
identifier : StableRecordIdentifier ,
@@ -536,7 +536,7 @@ export class PersistedCache implements Cache {
536
536
* @method isEmpty
537
537
* @internal
538
538
* @param identifier
539
- * @returns {boolean }
539
+ * @return {boolean }
540
540
*/
541
541
isEmpty ( identifier : StableRecordIdentifier ) : boolean {
542
542
return this . _cache . isEmpty ( identifier ) ;
@@ -549,7 +549,7 @@ export class PersistedCache implements Cache {
549
549
* @method isNew
550
550
* @internal
551
551
* @param identifier
552
- * @returns {boolean }
552
+ * @return {boolean }
553
553
*/
554
554
isNew ( identifier : StableRecordIdentifier ) : boolean {
555
555
return this . _cache . isNew ( identifier ) ;
@@ -562,7 +562,7 @@ export class PersistedCache implements Cache {
562
562
* @method isDeleted
563
563
* @internal
564
564
* @param identifier
565
- * @returns {boolean }
565
+ * @return {boolean }
566
566
*/
567
567
isDeleted ( identifier : StableRecordIdentifier ) : boolean {
568
568
return this . _cache . isDeleted ( identifier ) ;
@@ -575,7 +575,7 @@ export class PersistedCache implements Cache {
575
575
* @method isDeletionCommitted
576
576
* @internal
577
577
* @param identifier
578
- * @returns {boolean }
578
+ * @return {boolean }
579
579
*/
580
580
isDeletionCommitted ( identifier : StableRecordIdentifier ) : boolean {
581
581
return this . _cache . isDeletionCommitted ( identifier ) ;
0 commit comments