UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

23 lines (22 loc) 483 B
import type { Connection } from 'mongoose'; /** * 注文番号リポジトリ */ export declare class OrderNumberRepo { private readonly counterRepo; constructor(params: { connection: Connection; }); /** * タイムスタンプから発行する */ publishByTimestamp(params: { project: { alternateName: string; }; /** * 注文日時 */ orderDate: Date; }): Promise<string>; }