tini-app-jsapi-plugin
Version:
Tini App JSApi Plugin is a typescript server plugin that adds intellisense to Tini App JSApi.
17 lines (15 loc) • 347 B
TypeScript
/// <reference no-default-lib="true"/>
declare namespace my {
interface IPageScrollToOptions {
scrollTop?: number;
duration?: number;
selector?: string;
success?: () => void;
fail?: () => void;
complete?: () => void;
}
/**
* chưa hỗ trợ
*/
function pageScrollTo(options: IPageScrollToOptions): void;
}