Add license; make corrections; cleanup

This commit is contained in:
2022-05-15 09:56:45 -04:00
parent 7d17d88b60
commit 24c2bcfff0
40 changed files with 355 additions and 493 deletions

10
shims.d.ts vendored
View File

@@ -1,4 +1,14 @@
declare module '*.yaml' {
const record: Record<string, any>;
export default record;
}
declare module '*.md' {
const rawmd: string;
export default rawmd;
}
declare module '*.txt' {
const content: string;
export default content;
}