/** * 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 GlobalLink { id: string; title?: string; translate?: string; icon: string; iconUrl: string; url: string; type: 'link' | 'button'; /** * 버튼일 경우 클릭시 수행되는 콜백 함수 */ callback?: any; category?: string; /** * 버튼/링크이 turn on 상태인지에 대한 여부 */ activated: boolean; width: number; properties: NzSafeAny; description?: string; }