/** * 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 { NzSafeAny } from 'ng-zorro-antd/core/types'; /** * 글로벌 메뉴(레이아웃 상단 툴바에 나타나는 우측 메뉴 목록)를 구성하는 아이템 */ export interface ToolMenuItem { id?: string; /** * 메뉴명 */ title?: string; translate?: string; /** * 메뉴 아이콘 클래스명 * ex) exit_to_app */ icon?: string; /** * 글로벌 메뉴 선택시 호출되는 콜백 */ callback?: Function; disabled?: boolean; properties?: NzSafeAny; }