javascript-ampache
Version:
A JS library for the Ampache API
21 lines (18 loc) • 396 B
text/typescript
import { UID } from "../base";
export type PreferenceResponse = {
id: UID;
name: string;
level: string;
description: string;
value: string;
type: string;
category: string;
subcategory: string | null;
has_access: boolean;
values?: string; // TODO verify type
};
export type PreferencesResponse = {
total_count: number;
md5: string;
preference: PreferenceResponse[];
};