Skip to content

Commit 49e39d7

Browse files
fix ts type
1 parent 831b147 commit 49e39d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/demos/Demos/Stepper/Overview/Vue

apps/demos/Demos/Stepper/Overview/Vue/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const steps = [
2929
},
3030
];
3131

32-
export const orientations: {text: string, value: Orientation}[] = [
32+
export const orientations: Array<{text: string; value: Orientation}> = [
3333
{ text: 'Horizontal', value: 'horizontal' },
3434
{ text: 'Vertical', value: 'vertical' },
3535
];

0 commit comments

Comments
 (0)