mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { ResourceNotes } from '../templates';
|
|
import { BaseServiceOptions } from '../infrastructure';
|
|
|
|
class IssueNotes extends ResourceNotes {
|
|
constructor(options: BaseServiceOptions) {
|
|
super('projects', 'issues', options);
|
|
}
|
|
}
|
|
|
|
export default IssueNotes;
|