mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-03 04:53:51 +01:00
11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
|
import index from "!!raw-loader!./doc/index.md";
|
||
|
import { AllPages } from "./pages";
|
||
|
|
||
|
export type Document = typeof index;
|
||
|
|
||
|
export const Root = {
|
||
|
content: index,
|
||
|
};
|
||
|
|
||
|
export const getPage = (title: string): Document => AllPages[title] ?? Root;
|