/** * Audius API * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface PlaylistLibrary */ export interface PlaylistLibrary { /** * * @type {Array} * @memberof PlaylistLibrary */ contents?: Array; } /** * Check if a given object implements the PlaylistLibrary interface. */ export declare function instanceOfPlaylistLibrary(value: object): value is PlaylistLibrary; export declare function PlaylistLibraryFromJSON(json: any): PlaylistLibrary; export declare function PlaylistLibraryFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlaylistLibrary; export declare function PlaylistLibraryToJSON(value?: PlaylistLibrary | null): any;