@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
32 lines • 1.84 kB
TypeScript
//#region src/components/dropzone/accept-types.d.ts
declare const ACCEPT_TYPES: {
readonly csv: "text/csv";
readonly doc: "application/msword";
readonly docx: "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
readonly exe: "application/vnd.microsoft.portable-executable";
readonly gif: "image/gif";
readonly html: "text/html";
readonly jpeg: "image/jpeg";
readonly mp3: "audio/mpeg";
readonly mp4: "video/mp4";
readonly mpeg: "video/mpeg";
readonly pdf: "application/pdf";
readonly png: "image/png";
readonly ppt: "application/vnd.ms-powerpoint";
readonly pptx: "application/vnd.openxmlformats-officedocument.presentationml.presentation";
readonly svg: "image/svg+xml";
readonly txt: "text/plain";
readonly webp: "image/webp";
readonly xls: "application/vnd.ms-excel";
readonly xlsx: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
readonly zip: "application/zip";
};
declare const IMAGE_ACCEPT_TYPE: ("image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp")[];
declare const PDF_ACCEPT_TYPE: "application/pdf"[];
declare const MS_WORD_ACCEPT_TYPE: ("application/msword" | "application/vnd.openxmlformats-officedocument.wordprocessingml.document")[];
declare const MS_EXCEL_ACCEPT_TYPE: ("application/vnd.ms-excel" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")[];
declare const MS_POWER_POINT_ACCEPT_TYPE: ("application/vnd.ms-powerpoint" | "application/vnd.openxmlformats-officedocument.presentationml.presentation")[];
declare const EXE_ACCEPT_TYPE: "application/vnd.microsoft.portable-executable"[];
//#endregion
export { ACCEPT_TYPES, EXE_ACCEPT_TYPE, IMAGE_ACCEPT_TYPE, MS_EXCEL_ACCEPT_TYPE, MS_POWER_POINT_ACCEPT_TYPE, MS_WORD_ACCEPT_TYPE, PDF_ACCEPT_TYPE };
//# sourceMappingURL=accept-types.d.ts.map