project init
This commit is contained in:
11
components/swiper/common/constants.d.ts
vendored
Normal file
11
components/swiper/common/constants.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
declare const DIRECTION: {
|
||||
HOR: string;
|
||||
VER: string;
|
||||
};
|
||||
declare const enum NavTypes {
|
||||
none = "",
|
||||
dots = "dots",
|
||||
dotsBar = "dots-bar",
|
||||
fraction = "fraction"
|
||||
}
|
||||
export { DIRECTION, NavTypes };
|
||||
5
components/swiper/common/constants.js
Normal file
5
components/swiper/common/constants.js
Normal file
@@ -0,0 +1,5 @@
|
||||
const DIRECTION = {
|
||||
HOR: 'horizontal',
|
||||
VER: 'vertical',
|
||||
};
|
||||
export { DIRECTION };
|
||||
Reference in New Issue
Block a user