10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import type { PageContext } from "vike/types";
|
|
|
|
export type Data = Awaited<ReturnType<typeof data>>;
|
|
|
|
export async function data(pageContext: PageContext) {
|
|
return {
|
|
tableOfContents: pageContext.exports.tableOfContents,
|
|
};
|
|
}
|