/** * 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 */ export interface CustomLabel { /** * 적용되는 언어 * 미 사용시, 모든 언어에 공통 적용됨 */ lang?: string; /** * 실제 DB 에 저장되는 값 */ key: string; /** * 화면에 표시되는 명칭 */ label?: string; /** * 화면에 표시되는 번역 언어 코드 */ translate?: string; }