@nmscd/coordinate-conversion
Version:
Library to convert NMS coordinates
10 lines (8 loc) • 474 B
TypeScript
import { IConverterMethods } from '../../types/converter';
import { GlyphInput } from '../../types/glyphTypes';
/**
* A converter that takes a Portal code and returns functions to convert to other portal types.
* @param input multiple ways to input Portal code, see {@link GlyphInput| GlyphInput}
* @returns functions defined in {@link IConverterMethods| IConverterMethods}
*/
export declare const PortalCode: (input: GlyphInput) => Omit<IConverterMethods, "toGlyph">;