gitlab
Version:
Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.
10 lines (9 loc) • 428 B
TypeScript
import { BaseService, PaginatedRequestOptions, Sudo } from '../infrastructure';
import { NamespaceId } from '.';
declare class Namespaces extends BaseService {
all(options?: PaginatedRequestOptions): Promise<import("../infrastructure").GetResponse>;
show(namespaceId: NamespaceId, options: {
search?: string;
} & Sudo): Promise<import("../infrastructure").GetResponse>;
}
export default Namespaces;