import { InputFile } from './InputFile'; /** * ## InputStoryContentPhoto * Describes a photo to post as a story. * @see https://core.telegram.org/bots/api#inputstorycontentphoto */ export type InputStoryContentPhoto = { /** * Type of the content, must be photo */ type: 'photo'; /** * The photo to post as a story. The photo must be of the size 1080x1920 and must not exceed 10 MB. The photo can't be * reused and can only be uploaded as a new file, so you can pass “attach://” if the photo was * uploaded using multipart/form-data under . */ photo: InputFile | string; };