/** * 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 { Serializable } from 'ng-stalk/core/model'; import { NzSafeAny } from 'ng-zorro-antd/core/types'; import { CrudAction } from './crud-action'; import { CrudModalOption } from './crud-modal-option'; export declare class CrudModalData extends Serializable { action?: CrudAction | string; model: T; /** * modal 오픈시, 부가적인 option * 기본 CrudPageComponent, CrudPage2Component 에서는 사용처가 없다. 모달 구현시 어플리케이션 사용시 활용 가능하다. * since: 0.2.0-alpha.18 */ option?: CrudModalOption; constructor(obj?: NzSafeAny); }