@sodacore/i18n
Version:
Sodacore i18n is a plugin that offers internationalisation and localisation support for the Sodacore framework.
12 lines • 412 B
TypeScript
import type { IConfig } from '../types';
import { type Application, BasePlugin, type IPlugin } from '@sodacore/core';
export default class I18nPlugin extends BasePlugin implements IPlugin {
protected config: IConfig;
name: any;
version: any;
description: any;
author: any;
constructor(config?: IConfig);
install(app: Application): Promise<void>;
}
//# sourceMappingURL=plugin.d.ts.map