@tomei/product
Version:
NestJS package for product module
10 lines (9 loc) • 396 B
TypeScript
import { ProductBase } from '../../base/product/product.base';
import { LoginUser } from '@tomei/sso';
export declare class GemLabProduct extends ProductBase {
ObjectType: string;
private static _GemLabProductRepository;
private constructor();
static init(productId?: string): Promise<GemLabProduct>;
create(loginUser: LoginUser, dbTransaction?: any): Promise<ProductBase>;
}