BlogInfoList.d.ts 697 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import ArticleIcon from "@theme/icons/ArticleIcon.vue";
declare const _default: import("vue/types/vue").ExtendedVue<{
    $starArticles: import("@mr-hope/vuepress-types").PageComputed[];
} & Record<never, any> & ArticleIcon, {
    active: string;
}, {
    setActive(name: string): void;
    navigate(path: string): void;
}, {
    i18n: {
        article: string;
        articleList: string;
        category: string;
        tag: string;
        timeline: string;
        timelineText: string;
        allText: string;
        intro: string;
        star: string;
        slides: string;
        encrypt: string;
    };
    articleNumber: number;
}, Record<never, any>>;
export default _default;