File size: 180 Bytes
142fc6a
 
 
 
 
1
2
3
4
5
6
import type { Picture } from './types/Picture';

export function pictureLink(picture: Picture) {
	return `/photos/raw/${picture._id}/format/${picture.storage.formats[0].width}`;
}