genshin-manager
Version:
<div align="center"> <p> <a href="https://www.npmjs.com/package/genshin-manager"><img src="https://img.shields.io/npm/v/genshin-manager.svg?maxAge=3600" alt="npm version" /></a> <a href="https://www.npmjs.com/package/genshin-manager"><img src="https:
13 lines (12 loc) • 356 B
TypeScript
import { TextMapLanguage } from '../types';
/**
* Error thrown when the text map is not in the correct format
*/
export declare class TextMapFormatError extends Error {
readonly name: string;
/**
* Create a TextMapFormatError
* @param language Language of the text map
*/
constructor(language: keyof typeof TextMapLanguage);
}