gitbeaker/src/core/services/UserCustomAttributes.ts
2019-08-30 17:50:16 -04:00

11 lines
294 B
TypeScript

import { ResourceCustomAttributes } from '../templates';
import { BaseServiceOptions } from '../infrastructure';
class UserCustomAttributes extends ResourceCustomAttributes {
constructor(options: BaseServiceOptions) {
super('users', options);
}
}
export default UserCustomAttributes;