gitbeaker/src/services/MergeRequestNotes.ts
Daniel Rose da1a8f6a63 fix: Make package Typescript-conformant
Remove the typings directory.
Declare and use the types/interfaces in the various index.ts files.
This will produce a package that can be used by Typescript without
errors.

Remove the typings directory. Declare and use the types/interfaces in the various index.ts files.

This will produce a package that can be used by Typescript without errors.
2019-06-12 15:06:00 +02:00

11 lines
287 B
TypeScript

import { ResourceNotes } from '../templates';
import { BaseServiceOptions } from '../infrastructure';
class MergeRequestNotes extends ResourceNotes {
constructor(options: BaseServiceOptions) {
super('projects', 'merge_requests', options);
}
}
export default MergeRequestNotes;