CmpStr - v3.2.1
    Preparing search index...

    Interface PhoneticMappingService

    PhoneticMappingService defines the API for managing phonetic mappings.

    interface PhoneticMappingService {
        add: (
            algo: string,
            id: string,
            map: PhoneticMap,
            update?: boolean,
        ) => void;
        get: (algo: string, id: string) => PhoneticMap | undefined;
        has: (algo: string, id: string) => boolean;
        list: (algo: string) => string[];
        remove: (algo: string, id: string) => void;
    }
    Index

    Properties

    Properties

    add: (algo: string, id: string, map: PhoneticMap, update?: boolean) => void
    get: (algo: string, id: string) => PhoneticMap | undefined
    has: (algo: string, id: string) => boolean
    list: (algo: string) => string[]
    remove: (algo: string, id: string) => void