pip-services-imagesets-node
Version:
Image library microservice in Node.js
12 lines (11 loc) • 374 B
TypeScript
import { IStringIdentifiable } from 'pip-services3-commons-node';
import { AttachmentV1 } from './AttachmentV1';
export declare class ImageSetV1 implements IStringIdentifiable {
constructor(id: string, title: string, picIds?: string[]);
id: string;
create_time: Date;
title: string;
pics?: AttachmentV1[];
tags?: string[];
all_tags?: string[];
}