/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { CodeAndName, ToolLanguage } from 'ng-stalk/core/types'; export interface MagInitConfig { appName: string; /** * size: 212x217 */ logoUrl: string; /** * = default langauges * depreeated */ languages: CodeAndName[]; toolLanguages: ToolLanguage[]; /** * 지원 가능한 언어 전체 목록 */ supportLanguages: CodeAndName[]; /** * 다국어 관련 컴포넌트 사용시 기본 입력 가능한 지원 언어 Set */ defaultLanguages: CodeAndName[]; codes: { [key: string]: CodeAndName[]; }; icons: { [key: string]: CodeAndName[]; }; colors: { [key: string]: CodeAndName[]; }; statuses: { [key: string]: CodeAndName[]; }; }