UNPKG

@resk/core

Version:

An innovative TypeScript framework that empowers developers to build applications with a fully decorator-based architecture for efficient resource management. By combining the power of decorators with a resource-oriented design, DecorRes enhances code cla

8 lines (7 loc) 289 B
import { ICountry, ICountryCode } from "../countries/index"; /*** * The list of available countries in the application. * This object contains the country codes and their corresponding country objects. */ declare const _default: Record<ICountryCode, ICountry>; export default _default;