/** * 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 declare enum CrudAction { /** * 닫기 */ close = 0, /** * Add Modal 을 팝업 * @alias add */ openAddModal = 1, /** * Add Modal 을 팝업 * @alias openAddModal */ add = 2, /** * 등록 수행 */ doAdd = 3, /** * Edit Modal 을 팝업 * @alias edit */ openEditModal = 4, /** * Edit Modal 을 팝업 * @alias openEditModal */ edit = 5, /** * 수정 수행 */ doEdit = 6, /** * 상세 조회 Modal 을 팝업 */ openDetailModal = 7, /** * 상세 조회 Modal 을 팝업 * @alias openDetailModal */ detail = 8, /** * 삭제 프롬프트 팝업 */ openDeletePrompt = 9, /** * 삭제 처리 수행 */ doDelete = 10, /** * 모델이 변경됨 */ updated = 11, /** * 확인 */ confirm = 12 }