Files
FrenoCorp/node_modules/svix/dist/models/replayIn.d.ts

9 lines
202 B
TypeScript

export interface ReplayIn {
since: Date;
until?: Date | null;
}
export declare const ReplayInSerializer: {
_fromJsonObject(object: any): ReplayIn;
_toJsonObject(self: ReplayIn): any;
};