mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Made interface for metadata readers
This commit is contained in:
parent
bd5a30326c
commit
98e5542fe5
1 changed files with 7 additions and 0 deletions
7
src/metadata/mod-metadata-reader.ts
Normal file
7
src/metadata/mod-metadata-reader.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import ModMetadata from "./mod-metadata";
|
||||
|
||||
interface ModMetadataReader {
|
||||
readMetadata(modPath: string): Promise<ModMetadata | null>;
|
||||
}
|
||||
|
||||
export default ModMetadataReader;
|
Loading…
Reference in a new issue