13 lines
134 B
TypeScript
13 lines
134 B
TypeScript
export interface IEvent {
|
|
message?: {
|
|
photo?: [
|
|
{
|
|
file_id: string,
|
|
},
|
|
],
|
|
document?: {
|
|
file_id: string;
|
|
},
|
|
};
|
|
}
|