UNPKG

mp-lens

Version:

微信小程序分析工具 (Unused Code, Dependencies, Visualization)

16 lines (15 loc) 604 B
/** * Standard WXML tags recognized by WeChat Mini Program * * 官方文档:https://developers.weixin.qq.com/miniprogram/dev/component/ * - 顺序与官方文档分类完全一致,便于查阅和维护 * - Skyline/手势系统等专用标签已在注释中标明 * * These tags should not be reported as "used but not declared" when linting component usage */ /** * Filters out standard WXML tags from a set of tags * @param tags Set of tags to filter * @returns New set containing only non-standard tags */ export declare function filterStandardWxmlTags(tags: Set<string>): Set<string>;