interface Translator {
    transform_key?(key: string): undefined | string;
    translate?(key: string): undefined | string;
}

Methods