Entities.d.ts 434 B

12345678910
  1. import { OptionList } from './Options.js';
  2. export declare type EntityList = {
  3. [name: string]: string;
  4. };
  5. export declare const options: OptionList;
  6. export declare const entities: EntityList;
  7. export declare function add(additions: EntityList, file: string): void;
  8. export declare function remove(entity: string): void;
  9. export declare function translate(text: string): string;
  10. export declare function numeric(entity: string): string;