mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import { OffsetPagination } from '../types/types';
|
|
|
|
export interface SongRequestParams extends OffsetPagination {
|
|
albumIds?: string;
|
|
artistIds?: string;
|
|
serverFolderIds: string;
|
|
serverId: string;
|
|
songIds?: string;
|
|
}
|