Skip to content

Commit eb0c63d

Browse files
committed
feat: update CachedKey interface to use Array<Record<string, string>> for headers
1 parent 74c9c5f commit eb0c63d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/ng-http-caching-demo/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313

1414
interface CachedKey {
1515
key: string;
16-
headers: { [key: string]: string }[];
16+
headers: Array<Record<string, string>>;
1717
status: 'cached' | 'queue';
1818
}
1919

0 commit comments

Comments
 (0)