Remove obsolete files

This commit is contained in:
Björn Fromme
2021-10-29 16:30:37 +02:00
parent c6088d2479
commit a44e955616
3 changed files with 0 additions and 41 deletions
@@ -1,13 +0,0 @@
export default {
priceRanges: {},
destinations: {},
concepts: {},
pax: [],
nights: [],
hotelTypes: [],
boardTypes: [],
roomTypes: [],
dateFrom: null,
dateTo: null,
busAvailable: false
}
@@ -1,17 +0,0 @@
export default {
productUid: 0,
hotelUid: 0,
countryUids: [],
regionUids: [],
cityUids: [],
conceptUids: [],
dateFrom: null,
dateTo: null,
priceRanges: [],
nights: 0,
pax: 1,
hotelTypes: [],
boardTypes: [],
roomTypes: [],
bus: false
};
@@ -1,11 +0,0 @@
export const useDebounce = controller => {
Object.assign(controller, {
debounce(callback, interval) {
let debounceId
return (...args) => {
clearTimeout(debounceId)
debounceId = setTimeout(() => callback.apply(this, args), interval)
}
}
});
};