export type UpdateCollectionImageProps = {
collectionId: string;
value: string; // b64 data for new collection image
}
const success = await assetlayer.collections.updateCollectionImage({
collectionId: 'collectionId',
value: 'b64 data'
});
type ReturnType = boolean;