aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMiodec <[email protected]>2024-07-18 22:37:57 +0200
committerMiodec <[email protected]>2024-07-18 22:53:27 +0200
commit4222362653ced8f76c8f004c26990c0555592efc (patch)
treebb7900bc644956369d5a682fcf0f0ac51430028f
parent09fa6b4e2c9edc8419294d4fc8792323b0dab9c6 (diff)
downloadmonkeytype-4222362653ced8f76c8f004c26990c0555592efc.tar.gz
monkeytype-4222362653ced8f76c8f004c26990c0555592efc.zip
fix ape keys
-rw-r--r--frontend/src/ts/ape/types/ape-keys.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/ts/ape/types/ape-keys.d.ts b/frontend/src/ts/ape/types/ape-keys.d.ts
index 7b973f40f..a8a7ec6e0 100644
--- a/frontend/src/ts/ape/types/ape-keys.d.ts
+++ b/frontend/src/ts/ape/types/ape-keys.d.ts
@@ -1,11 +1,11 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
// for some reason when using the dot notaion, the types are not being recognized as used
declare namespace Ape.ApeKeys {
- type GetApeKeys = Record<string, ApeKey>;
+ type GetApeKeys = Record<string, import("@monkeytype/shared-types").ApeKey>;
type GenerateApeKey = {
apeKey: string;
apeKeyId: string;
- apeKeyDetails: ApeKey;
+ apeKeyDetails: import("@monkeytype/shared-types").ApeKey;
};
}