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:
16 lines (15 loc) • 550 B
TypeScript
import { ExcelBinOutputs, TextMapLanguage } from '../types';
/**
* Error thrown when the assets are not found
*/
export declare class AssetsNotFoundError extends Error {
readonly id: string | number | undefined;
readonly key: keyof (typeof ExcelBinOutputs & typeof TextMapLanguage);
readonly name: string;
/**
* Create a AssetsNotFoundError
* @param key Key of assets
* @param id ID of the specified asset
*/
constructor(key: keyof (typeof ExcelBinOutputs & typeof TextMapLanguage), id?: string | number);
}