Skip to content

Commit 4f907f2

Browse files
committed
lint fix
1 parent 6a5a217 commit 4f907f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.changeset/grumpy-dingos-pretend.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ export type CacheEntryType = "cache" | "fetch" | "composable";
1414
export type IncrementalCache = {
1515
get<CacheType extends CacheEntryType = "cache">(
1616
key: string,
17-
cacheType?: CacheType,
17+
cacheType?: CacheType
1818
): Promise<WithLastModified<CacheValue<CacheType>> | null>;
1919
set<CacheType extends CacheEntryType = "cache">(
2020
key: string,
2121
value: CacheValue<CacheType>,
22-
isFetch?: CacheType,
22+
isFetch?: CacheType
2323
): Promise<void>;
2424
delete(key: string): Promise<void>;
2525
name: string;
2626
};
2727
```
2828

29-
NextModeTagCache also get a new function `getLastRevalidated` used for the composable cache:
29+
NextModeTagCache also get a new function `getLastRevalidated` used for the composable cache:
3030

3131
```ts
3232
getLastRevalidated(tags: string[]): Promise<number>;

0 commit comments

Comments
 (0)