UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

20 lines (16 loc) 332 B
// this file is @generated export interface GithubConfig { secret?: string | null; } export const GithubConfigSerializer = { _fromJsonObject(object: any): GithubConfig { return { secret: object["secret"], }; }, _toJsonObject(self: GithubConfig): any { return { secret: self.secret, }; }, };