UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

16 lines (15 loc) 417 B
import type { CategoryCodeRepo } from '../../../repo/categoryCode'; import type { ProductModelRepo } from '../../../repo/productModel'; /** * 区分変更時処理 */ export declare function onCategoryCodeUpdated(params: { project: { id: string; }; ids: string[]; isDeleted: boolean; }): (repos: { categoryCode: CategoryCodeRepo; productModel: ProductModelRepo; }) => Promise<void>;