9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import { ability } from './ability';
|
|
|
|
declare module 'vue' {
|
|
interface ComponentCustomProperties {
|
|
$ability: typeof ability;
|
|
$can(this: this, ...args: Parameters<this['$ability']['can']>): boolean;
|
|
}
|
|
}
|