из значений ключа объекта?
export type IRepeat = {
oneLoop: string;
allLoop: string;
noLoop: string;
};
const repeatValue: IRepeat = {
oneLoop: 'allLoop',
allLoop: 'noLoop',
noLoop: 'oneLoop'
};
const [repeat, setRepeat] = useState<IRepeat>('allLoop');
const handleClickRep = (val: string) => setRepeat(repeatValue[val]);
keyof IRepeat
Обсуждают сегодня