Rocket.Chat.ReactNative/app/views/ShareView/interfaces.ts

16 lines
240 B
TypeScript

export interface IAttachment {
filename: string;
description?: string;
size: number;
mime?: string;
path: string;
canUpload: boolean;
error?: any;
uri: string;
}
export interface IUseDimensions {
width: number;
height: number;
}