mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
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.
11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
import { ResourceNotes } from '../templates';
|
|
import { BaseServiceOptions } from '../infrastructure';
|
|
|
|
class ProjectSnippetNotes extends ResourceNotes {
|
|
constructor(options: BaseServiceOptions) {
|
|
super('projects', 'snippets', options);
|
|
}
|
|
}
|
|
|
|
export default ProjectSnippetNotes;
|