We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f7a80c commit 6289f36Copy full SHA for 6289f36
src/components/BusinessHours/MucBusinessHours.test.ts
@@ -5,7 +5,11 @@ import { h } from "vue";
5
import BusinessHoursToggle from "./MucBusinessHours.vue"; // Pfad zur Komponente anpassen
6
7
describe("BusinessHoursToggle", () => {
8
- let businessHours: Array<any>;
+ interface BusinessHour {
9
+ weekDay: string;
10
+ openingHours: Array<{ from: string; to: string }>;
11
+ }
12
+ let businessHours: Array<BusinessHour>;
13
14
beforeEach(() => {
15
businessHours = [
0 commit comments