Interface LanguagePackService

interface LanguagePackService {
    deleteBundle(pluginId, locale?): void;
    getBundle(pluginId, locale): Promise<undefined | LanguagePackBundle>;
    storeBundle(pluginId, locale, bundle): void;
}

Implemented by

Methods