feat: added latex generation

This commit is contained in:
Morten Olsen
2022-03-29 23:01:49 +02:00
parent 90fdaeb406
commit d1d77ed915
68 changed files with 1506 additions and 290 deletions

8
src/data/assets/index.ts Normal file
View File

@@ -0,0 +1,8 @@
import { Service } from "typedi";
@Service()
abstract class AssetResolver {
public abstract getPath(...loc: string[]): string;
}
export { AssetResolver };