mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-24 21:15:08 +00:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import type { Directive } from 'vue';
|
|
import { RoleEnum } from '@/enums/roleEnum';
|
|
|
|
declare module 'vue' {
|
|
export interface ComponentCustomProperties {
|
|
vLoading: Directive<Element, boolean>;
|
|
vAuth: Directive<Element, string | string[] | RoleEnum[]>;
|
|
}
|
|
}
|
|
|
|
export {};
|