UNPKG

731 BTypeScriptView Raw
1import { ComponentType } from 'react'
2import { StandardProps } from './common'
3
4interface SnapshotProps extends StandardProps {
5 /**
6 * 渲染模式
7 * @supported weapp
8 * @default 'view'
9 *
10 * 可选值:
11 * - view: 以真实节点渲染
12 * - picture: 对子节点生成的内容截图渲染
13 */
14 mode: 'view' | 'picture'
15}
16
17/**
18 * 截图组件
19 * 支持将其子节点的渲染结果导出成图片,该组件需配合 snapshot 接口使用。 目前仅在 Skyline 渲染引擎 下支持。
20 * @classification skyline
21 * @supported weapp
22 * @see https://developers.weixin.qq.com/miniprogram/dev/component/snapshot.html
23 */
24declare const Snapshot: ComponentType<SnapshotProps>
25export { Snapshot, SnapshotProps }