hcc-imageright-apis
Version:
imageright APIs
7 lines (6 loc) • 681 B
TypeScript
import { AxiosInstance } from 'axios';
export declare function addNoteContainer(api: AxiosInstance, objectId: string, category: string): Promise<any>;
export declare function addNoteItem(api: AxiosInstance, objectId: string, noteObj: any): Promise<any>;
export declare function getNotes(api: AxiosInstance, objectId: string, category: string, status?: string, includeHidden?: boolean, includeDeleted?: boolean): Promise<any>;
export declare function lockNote(api: AxiosInstance, objectId: string, category: string, version: number): Promise<any>;
export declare function setNoteAsDefault(api: AxiosInstance, objectId: string, category: string, collectionId: string): Promise<any>;