@yujinakayama/apple-music
Version:
Apple Music API Client for Node.js
18 lines • 400 B
TypeScript
import { Resource } from './resource';
import { Error } from './error';
export interface ResponseRoot {
data?: Resource[];
errors?: Error[];
href?: string;
meta?: ResponseRoot.Meta;
next?: string;
results?: ResponseRoot.Results;
}
declare namespace ResponseRoot {
interface Meta {
}
interface Results {
}
}
export {};
//# sourceMappingURL=responseRoot.d.ts.map