UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

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