All files / lib index.ts

100% Statements 21/21
100% Branches 0/0
100% Functions 0/0
100% Lines 21/21

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 365x 5x 5x 5x 5x 5x 5x 5x   5x     5x 5x               5x 5x 5x 5x     5x 5x 5x 5x     5x 5x  
export * from './i18n.module';
export {
  I18N_OPTIONS,
  I18N_TRANSLATIONS,
  I18N_LANGUAGES,
  I18N_RESOLVER_OPTIONS,
  I18N_RESOLVERS,
  I18N_PARSER_OPTIONS,
} from './i18n.constants';
export * from './i18n.context';
 
// services
export * from './services/i18n.service';
export * from './services/i18n-request-scope.service';
 
// interfaces
export * from './interfaces/i18n-options.interface';
export * from './interfaces/i18n-language-resolver.interface';
export * from './interfaces/i18n-translation.interface';
 
// decorators
export * from './decorators/i18n-lang.decorator';
export * from './decorators/i18n-languages.decorator';
export * from './decorators/i18n-resolver-options.decorator';
export * from './decorators/i18n.decorator';
 
// build in resolvers
export * from './resolvers/header.resolver';
export * from './resolvers/accept-language.resolver';
export * from './resolvers/query.resolver';
export * from './resolvers/cookie.resolver';
 
// build in parsers
export * from './parsers/i18n.parser';
export * from './parsers/i18n.json.parser';