export function typedKeys>(dict: T): (keyof T)[] { return Object.keys(dict) as (keyof T)[]; }