blob: 16f1c9bb13921fbc2e3f01cfcd7ceddd1a945182 (
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 AlbumBannerArtistContribution extends AlbumAssetArtworkArtistContribution {
static [Thing.getPropertyDescriptors] = () => ({
isAlbumBannerArtistContribution: exposeConstant(V(true)),
});
}
|