UNPKG

gitlab

Version:

Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.

10 lines (9 loc) 286 B
import { BaseService, Sudo } from '../infrastructure'; import { ProjectId } from '.'; declare class Markdown extends BaseService { render(text: string, options: { gfm?: string; project?: ProjectId; } & Sudo): Promise<object>; } export default Markdown;