vuepress-theme-hope
Version:
A light vuepress theme with tons of features
12 lines (11 loc) • 377 B
TypeScript
import type { FunctionalComponent, Slot } from "vue";
import type { BloggerInfoSlotData } from "@theme-hope/typings/slots";
declare const TimelinePage: FunctionalComponent<Record<never, never>, [
], {
articlesBefore?: Slot;
articlesAfter?: Slot;
bloggerInfo?: Slot<BloggerInfoSlotData>;
infoBefore?: Slot;
infoAfter?: Slot;
}>;
export default TimelinePage;