(id: string, mode: 'exclusive' | 'additive')
| 696 | } |
| 697 | |
| 698 | export async function applyPreset(id: string, mode: 'exclusive' | 'additive'): Promise<void> { |
| 699 | await api.post(`/presets/${id}/apply`, { mode }); |
| 700 | } |
| 701 | |
| 702 | export interface ProfileList { |
| 703 | profiles: string[]; |