mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-01-31 02:00:51 +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 {
|
||
|
}
|