idlize

Форк
0
/
swiper.d.ts 
78 строк · 1.9 Кб
1
/*
2
 * Copyright (c) 2024 Huawei Device Co., Ltd.
3
 * Licensed under the Apache License, Version 2.0 (the "License");
4
 * you may not use this file except in compliance with the License.
5
 * You may obtain a copy of the License at
6
 *
7
 *     http://www.apache.org/licenses/LICENSE-2.0
8
 *
9
 * Unless required by applicable law or agreed to in writing, software
10
 * distributed under the License is distributed on an "AS IS" BASIS,
11
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
 * See the License for the specific language governing permissions and
13
 * limitations under the License.
14
 */
15

16
declare class Indicator<T> {
17

18
  left(value: Length): T;
19

20
  top(value: Length): T;
21

22
  right(value: Length): T;
23

24
  bottom(value: Length): T;
25

26
  start(value: LengthMetrics): T;
27

28
  end(value: LengthMetrics): T;
29

30
  static dot(): DotIndicator;
31

32
//   static digit(): DigitIndicator;
33
}
34

35
declare class DotIndicator extends Indicator<DotIndicator> {
36

37
  constructor();
38

39
  itemWidth(value: Length): DotIndicator;
40

41
  itemHeight(value: Length): DotIndicator;
42

43

44
//
45
//   selectedItemWidth(value: Length): DotIndicator;
46
//
47
//   selectedItemHeight(value: Length): DotIndicator;
48
//
49
//   mask(value: boolean): DotIndicator;
50
//
51
//   color(value: ResourceColor): DotIndicator;
52
//
53
//   selectedColor(value: ResourceColor): DotIndicator;
54
//
55
//   maxDisplayCount(maxDisplayCount: number): DotIndicator;
56
}
57

58
// declare class DigitIndicator extends Indicator<DigitIndicator> {
59
//
60
//   constructor();
61
//
62
//   fontColor(value: ResourceColor): DigitIndicator;
63
//
64
//   selectedFontColor(value: ResourceColor): DigitIndicator;
65
//
66
//   digitFont(value: Font): DigitIndicator;
67
//
68
//   selectedDigitFont(value: Font): DigitIndicator;
69
// }
70

71
declare class SwiperAttribute extends CommonMethod<SwiperAttribute> {
72

73
  index(value: number): SwiperAttribute;
74

75
  indicator(value: DotIndicator): SwiperAttribute;
76
//  indicator(value: DotIndicator | DigitIndicator | boolean): SwiperAttribute;
77

78
}
79

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.