import { Model, Sequelize } from 'sequelize'; import { ModelStatic } from '../../d.ts'; import { AuthType } from '../enums'; export interface INotifyInfo extends Model { groupnotifyName: string; groupnotifyToken: string; smtpserver: string; smtpuser: string; smtppwd: string; smtpport: number; authtype: AuthType; wechatTagId: number; wechatCorpid: string; wechatCorpsecret: string; } export declare type NotifyInfoStatic = ModelStatic; export declare function notifyInfoModelFactory(sequelize: Sequelize): NotifyInfoStatic;