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