UNPKG

378 BTypeScriptView Raw
1import { BaseService, PaginatedRequestOptions, Sudo } from '../infrastructure';
2export declare class Namespaces extends BaseService {
3 all(options?: PaginatedRequestOptions): Promise<import("../infrastructure").GetResponse>;
4 show(namespaceId: string | number, options?: {
5 search?: string;
6 } & Sudo): Promise<import("../infrastructure").GetResponse>;
7}