ivue-material-plus
Version:
A high quality UI components Library with Vue.js
24 lines (20 loc) • 509 B
TypeScript
import { Router } from 'vue-router';
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$router: Router;
}
}
declare global {
interface Window {
requestAnimationFrame: any;
webkitRequestAnimationFrame: AnimationFrameProvider;
mozRequestAnimationFrame: AnimationFrameProvider;
msRequestAnimationFrame: AnimationFrameProvider;
}
namespace JSX {
interface IntrinsicAttributes {
class?: any;
style?: any;
}
}
}