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)),
});
}
|