UNPKG

js-mdict

Version:

mdict (*.mdx, *.mdd) file reader. Licensed under AGPL-3.0 for better community cooperation and commercial value protection.

13 lines (12 loc) 310 B
import { Mdict } from './mdict.js'; export declare class MDD extends Mdict { /** * locate the resource key * @param resourceKey resource key * @returns the keyText and definition */ locate(resourceKey: string): { keyText: string; definition: string | null; }; }