UNPKG

pip-services-imagesets-node

Version:
12 lines (11 loc) 374 B
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[]; }