UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

20 lines (16 loc) 324 B
// this file is @generated export interface PortIoConfig { secret: string; } export const PortIoConfigSerializer = { _fromJsonObject(object: any): PortIoConfig { return { secret: object["secret"], }; }, _toJsonObject(self: PortIoConfig): any { return { secret: self.secret, }; }, };