wiki-entity
Version:
Wiki entity fetcher
7 lines (6 loc) • 335 B
TypeScript
import { SimpleEntityType, SimpleEntity } from "./simpleEntity";
import { WikiEntity } from "../types";
export declare type WikiEntityToEntityOptions = {
defaultType?: SimpleEntityType;
};
export declare function convertToSimpleEntity(wikiEntity: WikiEntity, lang: string, options?: WikiEntityToEntityOptions): SimpleEntity;