ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
27 lines (26 loc) • 994 B
TypeScript
/**
* @license
* Copyright Alibaba.com All Rights Reserved.
*
* 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 { EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
import { NzSafeAny } from 'ng-zorro-antd/core/types';
import { NzMenuModeType, NzMenuThemeType } from './menu.types';
export declare class NzSubmenuNoneInlineChildComponent implements OnInit, OnChanges {
menuClass: string | null;
theme: NzMenuThemeType;
templateOutlet: TemplateRef<NzSafeAny> | null;
isMenuInsideDropDown: boolean;
mode: NzMenuModeType;
position: string;
nzDisabled: boolean;
nzOpen: boolean;
readonly subMenuMouseState: EventEmitter<boolean>;
setMouseState(state: boolean): void;
expandState: string;
calcMotionState(): void;
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
}