🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@i18n-micro/types

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@i18n-micro/types

`@i18n-micro/types` provides TypeScript type definitions and interfaces for the `nuxt-i18n-micro` ecosystem. This package is designed to enhance type safety and developer experience when working with translations, locales, and routing in a Nuxt.js applica

Source
npmnpm
Version
1.1.5
Version published
Weekly downloads
7.9K
-27.75%
Maintainers
1
Weekly downloads
 
Created
Source

@i18n-micro/types

@i18n-micro/types provides TypeScript type definitions and interfaces for the nuxt-i18n-micro ecosystem. This package is designed to enhance type safety and developer experience when working with translations, locales, and routing in a Nuxt.js application. It includes types for locales, routing strategies, translation parameters, and more.

Installation

You can install @i18n-micro/types using npm or yarn:

npm install @i18n-micro/types

or

yarn add @i18n-micro/types

Usage

This package provides TypeScript types and interfaces for working with nuxt-i18n-micro. It is primarily used to ensure type safety when defining locales, routing strategies, and translation parameters.

Example

Here’s an example of how you might use the types provided by this package:

import { Locale, Strategies, ModuleOptions, I18nRouteParams } from '@i18n-micro/types'

// Define locales
const locales: Locale[] = [
  {
    code: 'en',
    iso: 'en-US',
    dir: 'ltr',
    displayName: 'English',
    baseUrl: 'https://example.com/en',
  },
  {
    code: 'de',
    iso: 'de-DE',
    dir: 'ltr',
    displayName: 'German',
    baseUrl: 'https://example.com/de',
  },
]

// Define routing strategy
const strategy: Strategies = 'prefix_except_default'

// Define module options
const options: ModuleOptions = {
  locales,
  strategy,
  defaultLocale: 'en',
  strategy: 'prefix',
}

// Define route parameters
const routeParams: I18nRouteParams = {
  en: { page: 'home' },
  de: { page: 'startseite' },
}

API Reference

Types and Interfaces

Locale

Represents a locale configuration.

LocaleCode

Represents a locale code (e.g., 'en', 'de').

Strategies

Represents the available routing strategies.

export type Strategies = 'no_prefix' | 'prefix_except_default' | 'prefix' | 'prefix_and_default'

ModuleOptions

Represents the configuration options for the nuxt-i18n-micro module.

ModuleOptionsExtend

Extends ModuleOptions with additional properties.

I18nRouteParams

Represents route parameters for different locales.

Params

Represents a key-value pair of parameters for interpolation.

PluralFunc

Represents a function for handling pluralization in translations.

GlobalLocaleRoutes

Represents global route configurations for different locales.

Translations

Represents a key-value pair of translations.

Translation

Represents a translation value, which can be a string, number, boolean, nested translations, or null.

PluralTranslations

Represents translations for singular and plural forms.

Contributing

If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request on the GitHub repository.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

For more information, visit the GitHub repository.

Author

FAQs

Package last updated on 13 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts