UNPKG

672 BTypeScriptView Raw
1import { BaseRequestOptions, BaseService, PaginatedRequestOptions, Sudo } from '../infrastructure';
2export declare class Wikis 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, slug: string, options?: BaseRequestOptions): Promise<object>;
6 show(projectId: string | number, slug: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
7 remove(projectId: string | number, slug: string, options?: Sudo): Promise<object>;
8}