What is `keyof T` for this template-literal index signature?type T = { [K: `id_${string}`]: number; }; type K = keyof T;