teableio/teable

View on GitHub
apps/nextjs-app/src/features/i18n/developer.config.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { I18nActiveNamespaces } from '@/lib/i18n';

export interface IDeveloperConfig {
  i18nNamespaces: I18nActiveNamespaces<'common' | 'setting' | 'sdk' | 'developer'>;
}

export const developerConfig: IDeveloperConfig = {
  i18nNamespaces: ['common', 'setting', 'sdk', 'developer'],
};