Alternative to ts-transformer-keys

Hi Team,

We have a Typescript project, currently we are using ts-transformer-keys to support mutation keys for the graphql models.

for example, below is the usage

export const getResponseModelKeys = (query: string): Array => {
const modelKeys: Keys = {
# trimmed for readability
[graphQlQueries.TEST]: keys(),
# trimmed for readability
}
}

keys is from ts-transformer-keys package, do we need this package or is there any better one to use? we are also using ttypescript for build from js to ts- just fyi

The ts-transformer-keys library is specifically designed to extract keys from TypeScript types at compile-time, which allows you to use these keys at runtime without requiring manual maintenance. This is useful in scenarios where you want to perform operations like serialization, validation, or data transformation based on the keys of an interface without hardcoding them