After utilizing the provided code, I have encountered an issue with retrieving the ultimate type of type A in the editor. Despite my efforts, the editor persistently showcases the composite form of the generic utility, complicating the process of verifying the type output during code composition. Is there a technique to compel TypeScript to compute and display the final type result within the editor interface?
import type {GetKeyOf} from "typescript-treasure"
interface EmitterMasterEventMap
{
[p: string]: never;
}
type A = GetKeyOf<EmitterMasterEventMap>[]; // How can I access the definitive type of type A within the editor?