UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

21 lines (20 loc) 627 B
import * as factory from '../../../factory'; import type { HasPOSRepo } from '../../../repo/place/hasPOS'; import type { MovieTheaterRepo } from '../../../repo/place/movieTheater'; import type { SettingRepo } from '../../../repo/setting'; import type { TaskRepo } from '../../../repo/task'; export declare function createInformHasPOSTasks(params: { project: { id: string; }; /** * 施設ID */ ids: string[]; typeOf: factory.placeType.MovieTheater; }): (repos: { hasPOS: HasPOSRepo; movieTheater: MovieTheaterRepo; setting: SettingRepo; task: TaskRepo; }) => Promise<void>;