This issue is to add support to the Dart JS Interop Generator to support `keyof` types ```ts type User = { name: string; id: string; } const userKeys: keyof User; // "name" | "id" ```