Skip to content
Snippets Groups Projects
custom.d.ts 270 B
Newer Older
declare module '*.svg' {
  const content: any
  export default content
}
Yoan VALLET's avatar
Yoan VALLET committed

declare module '*.scss' {
  const styles: Record<string, string>
Yoan VALLET's avatar
Yoan VALLET committed
  export default styles
}
declare module 'react-datepicker' {
Rémi PAILHAREY's avatar
Rémi PAILHAREY committed
  const datepicker: any
  export default datepicker