UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

16 lines (15 loc) 380 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; }