svix
Version:
Svix webhooks API client and webhook verification library
14 lines (13 loc) • 421 B
TypeScript
import { type ConnectorOut } from "./connectorOut";
import { type EventTypeOut } from "./eventTypeOut";
export interface EnvironmentOut {
connectors: ConnectorOut[];
createdAt: Date;
eventTypes: EventTypeOut[];
settings: any | null;
version?: number;
}
export declare const EnvironmentOutSerializer: {
_fromJsonObject(object: any): EnvironmentOut;
_toJsonObject(self: EnvironmentOut): any;
};