mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
13 lines
510 B
TypeScript
13 lines
510 B
TypeScript
import { Config } from './config.interface';
|
||
|
||
/**
|
||
* An interface to represent a language in the configuration. A LangConfig has a code which should be the official
|
||
* language code for the language (e.g. ‘fr’), a label which should be the name of the language in that language
|
||
* (e.g. ‘Français’), and a boolean to determine whether or not it should be listed in the language select.
|
||
*/
|
||
export interface LangConfig extends Config {
|
||
code: string;
|
||
label: string;
|
||
active: boolean;
|
||
}
|