e5core-angular-ui
Version:
e5 Anywhere Angular UI
12 lines (11 loc) • 588 B
TypeScript
import { E5ConfigurationService } from 'e5core-angular-services';
import { HttpClient } from '@angular/common/http';
import { BehaviorSubject } from 'rxjs';
import { WorkAttachmentsFrameModel } from '../models/work-attachments.model';
import { OdataOptions } from './odata-options';
export declare class AttachmentsOdataService {
private http;
private config;
constructor(http: HttpClient, config: E5ConfigurationService);
getWorkAttachments(workId: string, page: number, pagesize: number, options?: OdataOptions): BehaviorSubject<WorkAttachmentsFrameModel>;
}