@mhy/config
Version:
> This documentation is not complete. It's in progress and it's a BETA version. Use the tool at your own risk.
24 lines (19 loc) • 392 B
TypeScript
declare module '*.css' {
const content: any
export default content
}
declare module '*.scss' {
const content: any
export default content
}
declare module '*.svg' {
const content: any
export default content
}
declare module '*.svgx' {
const content: any
export default content
}
declare const shallow: any
declare const render: any
declare const mount: any