Files
morten-olsen.github.io/src/data/assets/index.ts
2022-03-29 23:01:49 +02:00

9 lines
159 B
TypeScript

import { Service } from "typedi";
@Service()
abstract class AssetResolver {
public abstract getPath(...loc: string[]): string;
}
export { AssetResolver };