diff --git a/src/index.ts b/src/index.ts index 45fba9c..5144f9d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,3 @@ export { isSameType } from "./is-same-type.ts"; export { isCompatibleType } from "./is-compatible-type.ts"; -export type { IsSameTypeOptions as CompareOptions } from "./utils.ts"; +export type { IsSameTypeOptions } from "./utils.ts"; diff --git a/src/is-compatible-type.ts b/src/is-compatible-type.ts index 4ba9cb9..26d2bd9 100644 --- a/src/is-compatible-type.ts +++ b/src/is-compatible-type.ts @@ -8,6 +8,8 @@ import { /** * Check if a the higherType matches the lowerType * + * @deprecated This a unstable API and still in development + * * @param higherType The looser type * @param lowerType The stricter type *