UNPKG

684 BTypeScriptView Raw
1import { BaseRequestOptions, BaseService, PaginatedRequestOptions, Sudo } from '../infrastructure';
2export declare class Releases extends BaseService {
3 all(projectId: string | number, options?: PaginatedRequestOptions): Promise<import("../infrastructure").GetResponse>;
4 create(projectId: string | number, options?: BaseRequestOptions): Promise<object>;
5 edit(projectId: string | number, tagName: string, options?: BaseRequestOptions): Promise<object>;
6 remove(projectId: string | number, tagName: string, options?: Sudo): Promise<object>;
7 show(projectId: string | number, tagName: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
8}