UNPKG

patchwork-mapconverter

Version:

Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator

7 lines (5 loc) 195 B
import { type JsonResult, type WarResult } from '../CommonInterfaces' export interface Translator<T> { jsonToWar: (json: T) => WarResult warToJson: (buffer: Buffer) => JsonResult<T> }