Remove outdated comment

This commit is contained in:
Jordan Eldredge 2024-03-02 14:28:43 -08:00
parent b4df8213d5
commit 3163d96ae5
3 changed files with 2 additions and 8 deletions

View file

@ -7,8 +7,6 @@ import IaItemModel from "../../../data/IaItemModel";
/**
* A Winamp skin. Could be modern or classic.
*
* **Note**: At some point in the future, this might be renamed to `Skin`.
* @gqlInterface Skin
*/
export interface ISkin {

View file

@ -46,11 +46,7 @@ interface Node {
id: ID!
}
"""
A Winamp skin. Could be modern or classic.
**Note**: At some point in the future, this might be renamed to `Skin`.
"""
"""A Winamp skin. Could be modern or classic."""
interface Skin {
"""List of files contained within the skin's .wsz archive"""
archive_files: [ArchiveFile]

View file

@ -182,7 +182,7 @@ export function getSchema(): GraphQLSchema {
}
});
const SkinType: GraphQLInterfaceType = new GraphQLInterfaceType({
description: "A Winamp skin. Could be modern or classic.\n\n**Note**: At some point in the future, this might be renamed to `Skin`.",
description: "A Winamp skin. Could be modern or classic.",
name: "Skin",
fields() {
return {