pengzhanbo 5dca5acb96 docs: 添加注释和说明文档
添加部分注释,部分说明文档.
2022-05-01 14:40:48 +08:00

16 lines
276 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export type CanIUseMode = 'embed' | 'image'
/**
* can-i-use plugin options
*/
export interface CanIUsePluginOptions {
/**
* 嵌入模式
*
* embed 通过iframe嵌入提供可交互视图
*
* image 通过图片嵌入,静态
*/
mode: CanIUseMode
}