公告板
版本库
filestore
活动
搜索
登录
main
/
lmk-shop-wx
绿满眶商城微信小程序-uniapp
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
我的浏览记录增加视频播放记录,TODO样式优化、播放历史视频
xiangpei
2025-07-04
0fa280c6d02dbf694e36b1f352aea51132ec6dde
[lmk-shop-wx.git]
/
js_sdk
/
u-draw-poster
/
utils
/
utils.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { DrawPosterBuildOpts } from "./interface";
/** 是否是base64本地地址 */
export declare const isBaseUrl: (str: string) => boolean;
/** 是否是小程序本地地址 */
export declare const isTmpUrl: (str: string) => boolean;
/** 是否是网络地址 */
export declare const isNetworkUrl: (str: string) => boolean;
/** 对象target挂载到对象current */
export declare const extendMount: (current: Record<any, any>, target: Record<any, any>, handle?: (extend: Function, target?: Record<any, any> | undefined) => any) => void;
/** 处理构建配置 */
export declare const handleBuildOpts: (options: string | DrawPosterBuildOpts) => {
selector: string;
componentThis: any;
type2d: boolean;
loading: boolean;
debugging: boolean;
loadingText: string;
createText: string;
gcanvas: boolean;
};