mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-01-30 22:10:52 +00:00
23 lines
295 B
TypeScript
23 lines
295 B
TypeScript
type Pack = {
|
|
rootMod: Mod;
|
|
};
|
|
|
|
type Mod = null;
|
|
|
|
interface PackEmitter {
|
|
emit(pack: Pack): void;
|
|
}
|
|
|
|
class PackCompiler {
|
|
public constructor(
|
|
private entryFilePath: string,
|
|
private emitter: PackEmitter,
|
|
) {}
|
|
|
|
public compile() {
|
|
}
|
|
}
|
|
|
|
class ModResolver {
|
|
}
|