[improvement]: change miniprogram-api-typings for typescript definition

This commit is contained in:
rex 2019-02-25 19:59:55 +08:00 committed by GitHub
parent 11b6aa9b03
commit ff94a7d6cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 13 additions and 523 deletions

View File

@ -46,6 +46,7 @@
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"miniprogram-api-typings": "^2.4.2-2",
"postcss-loader": "^3.0.0",
"progress-bar-webpack-plugin": "^1.11.0",
"style-loader": "^0.23.1",

View File

@ -80,7 +80,7 @@ VantComponent({
Promise.all([
this.getRect('.van-notice-bar__content'),
this.getRect('.van-notice-bar__content-wrap')
]).then((rects: BoundingClientRect[]) => {
]).then((rects: wx.BoundingClientRectCallbackResult[]) => {
const [contentRect, wrapRect] = rects;
if (
contentRect == null ||

View File

@ -105,7 +105,7 @@ VantComponent({
this.setTrack();
this.scrollIntoView();
this.getRect('.van-tabs__wrap').then((rect: BoundingClientRect) => {
this.getRect('.van-tabs__wrap').then((rect: wx.BoundingClientRectCallbackResult) => {
this.navHeight = rect.height;
this.observerContentScroll();
});
@ -157,7 +157,7 @@ VantComponent({
const { color, active, duration, lineWidth, lineHeight } = this.data;
this.getRect('.van-tab', true).then((rects: BoundingClientRect[]) => {
this.getRect('.van-tab', true).then((rects: wx.BoundingClientRectCallbackResult[]) => {
const rect = rects[active];
const width = lineWidth !== -1 ? lineWidth : rect.width / 2;
const height = lineHeight !== -1 ? `height: ${lineHeight}px;` : '';
@ -190,7 +190,7 @@ VantComponent({
if (!animated) return '';
this.getRect('.van-tabs__content').then((rect: BoundingClientRect) => {
this.getRect('.van-tabs__content').then((rect: wx.BoundingClientRectCallbackResult) => {
const { width } = rect;
this.set({
@ -245,7 +245,7 @@ VantComponent({
this.getRect('.van-tab', true),
this.getRect('.van-tabs__nav')
]).then(
([tabRects, navRect]: [BoundingClientRect[], BoundingClientRect]) => {
([tabRects, navRect]: [wx.BoundingClientRectCallbackResult[], wx.BoundingClientRectCallbackResult]) => {
const tabRect = tabRects[active];
const offsetLeft = tabRects
.slice(0, active)

View File

@ -3,7 +3,8 @@
"baseUrl": ".",
"target": "es6",
"noImplicitThis": true,
"noImplicitUseStrict": true
"noImplicitUseStrict": true,
"typeRoots": ["./node_modules/miniprogram-api-typings"]
},
"include": [
"types/**/*",

1
types/weapp.d.ts vendored
View File

@ -4,7 +4,6 @@ type BehaviorOptions = {
declare function Behavior(options: BehaviorOptions): void
declare function Component(options: any): void
declare function getCurrentPages(): Weapp.Page[]
declare namespace Weapp {
interface Component {

516
types/wx.d.ts vendored
View File

@ -1,516 +0,0 @@
interface SystemInfo {
/**
*
*/
brand: string
/**
*
*/
model: string
/**
*
*/
pixelRatio: number
/**
* px
*/
screenWidth: number
/**
* px
*/
screenHeight: number
/**
* 使px
*/
windowWidth: number
/**
* 使px
*/
windowHeight: number
/**
* px
*/
statusBarHeight: number
/**
*
*/
language: string
/**
*
*/
version: string
/**
*
*/
system: string
/**
*
*/
platform: string
/**
* px---
*/
fontSizeSetting: number
/**
*
*/
SDKVersion: string
/**
* Android小游戏-2 0-1>=150
*/
benchmarkLevel: number
}
type TimingFunction =
| 'linear'
| 'ease'
| 'ease-in'
| 'ease-in-out'
| 'ease-out'
| 'step-start'
| 'step-end';
interface AnimationOptions {
/**
* ms
*/
duration: number
/**
*
*/
timingFunction: TimingFunction
/**
* ms
*/
delay: number
/**
* transform-origin
*/
transformOrigin: string
}
interface Animation {
/**
* export
*/
export(): object
/**
*
*/
step(object: Partial<AnimationOptions>): void
/**
* 0~1
*/
opacity(value: number): Animation
/**
*
*/
backgroundColor(color: string): Animation
/**
* Number 使 px
*/
width(length: number): Animation
/**
* Number 使 px
*/
height(length: number): Animation
/**
* Number 使 px
*/
top(length: number): Animation
/**
* Number 使 px
*/
left(length: number): Animation
/**
* Number 使 px
*/
bottom(length: number): Animation
/**
* Number 使 px
*/
right(length: number): Animation
/**
* deg的范围-180~180deg角度
*/
rotate(deg: number): Animation
/**
* deg的范围-180~180X轴旋转一个deg角度
*/
rotateX(deg: number): Animation
/**
* deg的范围-180~180Y轴旋转一个deg角度
*/
rotateY(deg: number): Animation
/**
* deg的范围-180~180Z轴旋转一个deg角度
*/
rotateZ(deg: number): Animation
/**
* transform-function rotate3d
*/
rotate3d(x: number, y: number, z: number, deg: number): Animation
/**
* X轴Y轴同时缩放sx倍数X轴缩放sx倍数Y轴缩放sy倍数
*/
scale(sx: number, sy?: number): Animation
/**
* X轴缩放sx倍数
*/
scaleX(sx: number): Animation
/**
* Y轴缩放sy倍数
*/
scaleY(sy: number): Animation
/**
* Z轴缩放sy倍数
*/
scaleZ(sz: number): Animation
/**
* X轴缩放sx倍数Y轴缩放sy倍数Z轴缩放sz倍数
*/
scale3d(sx: number, sy: number, sz: number): Animation
/**
* X轴偏移txpxX轴偏移txY轴偏移typx
*/
translate(tx: number, ty?: number): Animation
/**
* X轴偏移txpx
*/
translateX(tx: number): Animation
/**
* Y轴偏移txpx
*/
translateY(tx: number): Animation
/**
* Z轴偏移txpx
*/
translateZ(tx: number): Animation
/**
* X轴偏移txY轴偏移tyZ轴偏移tzpx
*/
translate3d(tx: number, ty: number, tz: number): Animation
/**
* -180~180Y轴坐标不变X轴坐标延顺时针倾斜ax度X轴倾斜ax度Y轴倾斜ay度
*/
skew(ax: number, ay?: number): Animation
/**
* -180~180Y轴坐标不变X轴坐标延顺时针倾斜ax度
*/
skewX(ax: number): Animation
/**
* -180~180X轴坐标不变Y轴坐标延顺时针倾斜ay度
*/
skewY(ay: number): Animation
/**
* transform-function matrix
*/
matrix(
a: number,
b: number,
c: number,
d: number,
tx: number,
ty: number
): Animation
/**
* transform-function matrix3d
*/
matrix3d(): Animation
}
interface FieldsOptions {
/**
* id
*/
id: boolean
/**
* dataset
*/
dataset: boolean
rect: boolean
size: boolean
scrollOffset: boolean
properties: string[]
computedStyle: string[]
context: boolean
}
interface BoundingClientRect {
/**
* ID
*/
id: string
/**
* dataset
*/
dataset: object
/**
*
*/
left: number
/**
*
*/
right: number
/**
*
*/
top: number
/**
*
*/
bottom: number
/**
*
*/
width: number
/**
*
*/
height: number
}
interface IntersectionRect {
/**
*
*/
left: number
/**
*
*/
right: number
/**
*
*/
top: number
/**
*
*/
bottom: number
}
interface ScrollOffset {
/**
* ID
*/
id: string
/**
* dataset
*/
dataset: Object
/**
*
*/
scrollLeft: number
/**
*
*/
scrollTop: number
}
interface NodesRef {
/**
* fields中指定 nodesRef selectorQuery
*/
fields(object: Partial<FieldsOptions>): object
/**
* DOM getBoundingClientRect NodesRef SelectorQuery
*/
boundingClientRect(callback: (res: BoundingClientRect) => void): SelectorQuery
/**
* scroll-view viewport NodesRef SelectorQuery
*/
scrollOffset(callback: (res: ScrollOffset) => void): SelectorQuery
/**
* Context VideoContextCanvasContextLivePlayerContext MapContext
*/
context(callback: (res: { content: any }) => void): SelectorQuery
}
interface SelectorQuery {
/**
* component
* @param component [description]
*/
in(component: Weapp.Component): SelectorQuery
/**
* selector NodesRef
*/
select(selector: string): NodesRef
/**
* selector
*/
selectAll(selector: string): NodesRef
/**
*
*/
selectViewport(): NodesRef
/**
* callback的第一个参数中返回
*/
exec(callback?: Function): NodesRef
}
interface ObserverOptions {
/**
*
*/
thresholds: number[]
/**
*
*/
initialRatio: number
/**
* true observe targetSelector
*/
observeAll: boolean
}
interface Margins {
/**
*
*/
left: number
/**
*
*/
right: number
/**
*
*/
top: number
/**
*
*/
bottom: number
}
interface IntersectionObserver {
/**
*
*/
disconnect(): void
/**
* 使
*/
relativeTo(selector: string, object: Partial<Margins>): IntersectionObserver
/**
*
*/
relativeToViewport(object?: Partial<Margins>): IntersectionObserver
/**
*
*/
observe(
selector: string,
callback: (
object: {
/**
*
*/
intersectionRatio: number
/**
*
*/
intersectionRect: IntersectionRect
/**
*
*/
boundingClientRect: IntersectionRect
/**
*
*/
relativeRect: IntersectionRect
/**
*
*/
time: number
}
) => void
): void
}
interface Wx {
/**
*
*/
getSystemInfo(object: {
success: (res: SystemInfo) => void
fail?: () => void
complete?: () => void
}): void
/**
*
*/
getSystemInfoSync(): SystemInfo
/**
* animation export animation
*/
createAnimation(object: Partial<AnimationOptions>): Animation
/**
* SelectorQuery 使 this.createSelectorQuery()
*/
createSelectorQuery(): SelectorQuery
createIntersectionObserver(
component: Weapp.Component,
options?: Partial<ObserverOptions>
): IntersectionObserver
/**
*
*/
showToast(options: {
/**
*
*/
title: string
/**
*
*/
icon?: 'success' | 'loading' | 'none'
/**
* image icon
*/
image?: string
/**
*
*/
duration?: number
/**
* 穿
*/
mask?: boolean
/**
*
*/
success?: () => void
/**
*
*/
fail?: () => void
/**
*
*/
complete?: () => void
}): void
}
declare const wx: Wx;

View File

@ -4713,6 +4713,11 @@ minipass@^2.2.1, minipass@^2.3.3:
safe-buffer "^5.1.2"
yallist "^3.0.0"
miniprogram-api-typings@^2.4.2-2:
version "2.4.2-2"
resolved "http://registry.npm.qima-inc.com/miniprogram-api-typings/download/miniprogram-api-typings-2.4.2-2.tgz#6963f29664b44628157edfb33babc3bde992fff1"
integrity sha1-aWPylmS0RigVft+zO6vDvemS//E=
minizlib@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb"