mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 01:17:23 +08:00
14 lines
377 B
TypeScript
14 lines
377 B
TypeScript
import type { Directive } from "vue";
|
|
import type { CopyEl } from "../src/directives/copy/index";
|
|
|
|
declare module "vue" {
|
|
export interface ComponentCustomProperties {
|
|
vLoading: Directive<Element, boolean>;
|
|
vAuth: Directive<HTMLElement, string | Array<string>>;
|
|
vCopy: Directive<CopyEl, string>;
|
|
vLongpress: Directive<HTMLElement, Function>;
|
|
}
|
|
}
|
|
|
|
export {};
|