« get me outta code hell

AlbumWallpaperArtistContribution.js « contrib « things « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things/contrib/AlbumWallpaperArtistContribution.js
blob: acd29cf883cb0ecf97804308910ccd57b8908cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import {V} from '#composite';
import Thing from '#thing';

import {exposeConstant} from '#composite/control-flow';

import {AlbumAssetArtworkArtistContribution} from './AlbumAssetArtworkArtistContribution.js';

export class AlbumWallpaperArtistContribution extends AlbumAssetArtworkArtistContribution {
  static [Thing.getPropertyDescriptors] = () => ({
    isAlbumWallpaperArtistContribution: exposeConstant(V(true)),
  });
}