15 lines
327 B
TypeScript
15 lines
327 B
TypeScript
export interface StreamOut {
|
|
createdAt: Date;
|
|
id: string;
|
|
metadata: {
|
|
[key: string]: string;
|
|
};
|
|
name?: string | null;
|
|
uid?: string | null;
|
|
updatedAt: Date;
|
|
}
|
|
export declare const StreamOutSerializer: {
|
|
_fromJsonObject(object: any): StreamOut;
|
|
_toJsonObject(self: StreamOut): any;
|
|
};
|