Home.d.ts 283 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
import Vue from "vue";
interface ActionConfig {
    text: string;
    link: string;
}
declare const _default: import("vue/types/vue").ExtendedVue<Vue, unknown, {
    navigate(link: string): void;
}, {
    actionLinks: ActionConfig[];
}, Record<never, any>>;
export default _default;