blob: 2304939728234fcaad65049cb2a52d9646174523 (
plain)
1
2
3
4
5
6
7
8
9
|
import {isWallpaperPartList} from '#validators';
export default function() {
return {
flags: {update: true, expose: true},
update: {validate: isWallpaperPartList},
expose: {transform: value => value ?? []},
};
}
|