@zakijs/plugin-compiler-alipay
Version:
mor complier plugin for alipay mini program
11 lines (10 loc) • 487 B
TypeScript
import { FileParserOptions, posthtml } from '@morjs/utils';
/**
* 自定义 template 处理
* 处理 支付宝转 其他小程序的兼容性
*/
export declare const templateProcessorToOther: {
onNode(node: posthtml.Node, options: FileParserOptions): void;
onNodeExit(node: posthtml.Node, options: FileParserOptions, context: Record<string, any>): void;
onNodeAttr(attrName: string, node: posthtml.Node, options: FileParserOptions, context: Record<string, any>): void;
};