fix cached endpoint status type
All checks were successful
Publish Package / build (push) Successful in 18s

This commit is contained in:
Lee 2024-04-16 22:26:28 +01:00
parent c1e9d7e5db
commit 14e1649be0
2 changed files with 2 additions and 2 deletions

@ -1,6 +1,6 @@
{ {
"name": "mcutils-library", "name": "mcutils-library",
"version": "1.1.2", "version": "1.1.3",
"description": "", "description": "",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

@ -2,7 +2,7 @@ export interface CachedEndpointStatus extends Cache {
/** /**
* The cached endpoint status. * The cached endpoint status.
*/ */
endpoints: Map<string, Status>; endpoints: Record<string, Status>;
} }
enum Status { enum Status {