6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
import type { ApiPhoto } from '../../api/types';
|
|
|
|
export function getBotCoverMediaHash(photo: ApiPhoto) {
|
|
return `photo${photo.id}?size=x`;
|
|
}
|