/*** * @file: * @author: caojianping * @Date: 2023-07-05 19:34:14 */ import { DingdingShareTypeEnum } from '../enums'; import { IBaseAuthCode } from './platform.interface'; /** * 飞书鉴权信息接口 */ export interface IFeishuSignature { appId: string; timestamp: string; nonceStr: string; signature: string; } /** * 飞书扫码结果接口 */ export interface IFeishuScanResult { result: string; errMsg: string; } /** * 飞书授权码结果接口 */ export interface IFeishuAuthResult extends IBaseAuthCode { } /** * 飞书分享传参接口 */ export interface IFeishuShareParams { type: DingdingShareTypeEnum; url: string; content: string; title: string; image: string; }