UNPKG

@ctodev/cclibrary-typings

Version:

Library typings for use with CLARC INFINITY

13 lines (12 loc) 417 B
import { InjectionToken } from "@angular/core"; export interface TccLanguageDefinition { name: string; nativeName: string; ["3Code"]: string; ["2Code"]?: string; } export interface TccLanguageList { [ThreeCode: string]: TccLanguageDefinition; } export declare const TCCLANGUAGES: InjectionToken<TccLanguageList>; export declare const TCCPOSSIBLELANGUAGES: InjectionToken<TccLanguageDefinition[]>;