wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
18 lines (17 loc) • 360 B
TypeScript
import { EnumExternalAttrType } from "./external-attr-type.enum";
export interface IExternalAttrItem {
type: EnumExternalAttrType;
name: string;
text?: {
value: string;
};
web?: {
url: string;
title: string;
};
miniprogram?: {
appid: string;
pagepath: string;
title: string;
};
}