mirror of
https://github.com/aljazceru/sendstr-web.git
synced 2025-12-17 06:24:24 +01:00
27 lines
433 B
TypeScript
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
|
|
} |