Skip to content

Commit 061f5c0

Browse files
committed
Change CACHE_OPTIONS type in OpenAPIConfig from Map to Record
1 parent 75ef637 commit 061f5c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/templates/core/OpenAPI.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type OpenAPIConfig = {
1515
PASSWORD?: string | Resolver<string> | undefined;
1616
HEADERS?: Headers | Resolver<Headers> | undefined;
1717
ENCODE_PATH?: ((path: string) => string) | undefined;
18-
CACHE_OPTIONS?: Map<string, any> | undefined;
18+
CACHE_OPTIONS?: Record<string, any> | undefined;
1919
};
2020

2121
export const OpenAPI: OpenAPIConfig = {

0 commit comments

Comments
 (0)