UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

17 lines (14 loc) 379 B
import { DataTypes } from "@etsoo/shared"; import { IState } from "./State"; /** * Culture resources state, simple i18n solution * For premium solution: https://www.i18next.com/ * Indexable type */ export interface ICulture extends DataTypes.CultureDefinition, IState {} /** * Culture get delegate */ export interface ICultureGet { (key: string): string | undefined; }