Files
feishin/server/services/types.ts
T
2022-10-25 16:52:45 -07:00

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;
}