Files
sendstr-web/global.d.ts
2022-12-27 05:59:34 -06:00

27 lines
433 B
TypeScript

declare module "remark-html" {
const html: any
export default html
}
declare module "toastify-js" {
const Toastify: ({
text,
duration,
close,
gravity,
position,
stopOnFocus,
className,
}: {
text: string
duration: number
close: boolean
gravity: string
position: string
stopOnFocus: boolean
className: string
}) => {
showToast: () => void
}
export = Toastify
}