teableio/teable

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

Summary

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

export interface IOAuthAppConfig {
  i18nNamespaces: I18nActiveNamespaces<'common' | 'setting' | 'sdk' | 'oauth' | 'zod'>;
}

export const oauthAppConfig: IOAuthAppConfig = {
  i18nNamespaces: ['common', 'sdk', 'setting', 'oauth', 'zod'],
};