gao-watermark
Version:
```bash npm install gao-watermark --save-dev ```
16 lines (15 loc) • 416 B
TypeScript
import { App, DefineComponent } from 'vue';
import { IGaoMarkConfig } from './type';
declare module 'gao-watermark' {
const install: (app: App, options?:IGaoMarkConfig) => void
const GaoWatermark: DefineComponent<IGaoMarkConfig>
export {
install as default,
GaoWatermark
}
}
declare module '@vue/runtime-core' {
interface GlobalComponents {
GaoWatermark: DefineComponent<IGaoMarkConfig>
}
}