UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

21 lines (17 loc) 371 B
// this file is @generated /* eslint @typescript-eslint/no-explicit-any: 0 */ export interface SlackConfig { secret: string; } export const SlackConfigSerializer = { _fromJsonObject(object: any): SlackConfig { return { secret: object["secret"], }; }, _toJsonObject(self: SlackConfig): any { return { secret: self.secret, }; }, };