UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

14 lines (13 loc) 324 B
declare const fileTypeMap: { excel: string; word: string; image: string; pdf: string; video: string; audio: string; text: string; csv: string; }; export type FileType = keyof typeof fileTypeMap; export declare const getAcceptAttribute: (fileType?: FileType) => string | undefined; export {};