import BaseTypedBinding from './base-typed-binding';
export class LengthTypedBinding extends BaseTypedBinding {
constructor(type, value, options) {
super(type, value, options);
this.type = type;
this.value = value;
this.options = options;
}
}
export default LengthTypedBinding;