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

12 lines
258 B
TypeScript

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