12 lines
278 B
TypeScript
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;
|
|
};
|