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

12 lines
278 B
TypeScript

export interface StreamPatch {
description?: string;
metadata?: {
[key: string]: string;
};
uid?: string | null;
}
export declare const StreamPatchSerializer: {
_fromJsonObject(object: any): StreamPatch;
_toJsonObject(self: StreamPatch): any;
};