mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-26 11:34:14 +00:00
Remove outdated comment
This commit is contained in:
parent
b4df8213d5
commit
3163d96ae5
3 changed files with 2 additions and 8 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue