import { IRocketChatRecord } from './IRocketChatRecord'; export interface IWebdavAccount extends IRocketChatRecord { userId: string; serverURL: string; username: string; password: string; name: string; } export type IWebdavAccountPayload = Omit;