/**
 * Made by mkcomponent.sh
*/

import { Component } from '@angular/core'

// Parent Component
import { MountheightComponent } from '@k-core/modules/configurator/components/mount-height/cmp.mount-height'

interface chainElement {
    chain: string;
    heights: any[];
}

@Component({
    moduleId: module.id+ '',
    selector: 'configurator-mountheight',
    templateUrl: './template/tpl--mount-height.pug',
    styleUrls: ['sty.mount-height.jysk.scss']
})

export class MountheightJyskComponent extends MountheightComponent {}
