shadowfacts.net/lib/generate/index.ts

22 lines
383 B
TypeScript
Raw Normal View History

2019-01-04 18:14:53 +00:00
import categories from "./categories";
2019-01-04 18:36:40 +00:00
import copy from "./copy";
2019-01-04 18:14:53 +00:00
import css from "./css";
2019-09-17 19:30:47 +00:00
import errors from "./errors";
2019-01-04 18:14:53 +00:00
import homepage from "./homepage";
import posts from "./posts";
import redirects from "./redirects";
import rss from "./rss";
import tutorials from "./tutorials";
export = {
categories,
2019-01-04 18:36:40 +00:00
copy,
2019-01-04 18:14:53 +00:00
css,
2019-09-17 19:30:47 +00:00
errors,
2019-01-04 18:14:53 +00:00
homepage,
posts,
redirects,
rss,
tutorials
2019-09-17 19:30:47 +00:00
};