gitbeaker/src/services/ProjectCustomAttributes.ts
2018-10-12 00:22:09 +03:00

11 lines
331 B
TypeScript

import { ResourceCustomAttributes } from '../templates';
import { BaseModelContructorOptions } from '../infrastructure/BaseService';
class ProjectCustomAttributes extends ResourceCustomAttributes {
constructor(options: BaseModelContructorOptions) {
super('projects', options);
}
}
export default ProjectCustomAttributes;