tstype Place = {
label: string;
picUrl: string;
};
const places = [
{
label: 'その他',
picUrl: 'https://static.hoge/place-living.jpeg',
},
{
label: 'リビング',
picUrl: 'https://static.hoge/place-living.jpeg',
},
] as const satisfies Place[]; // error
places
から、 type Name = (typeof places)[number]['label'];
としたい