11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
export declare enum SinkStatus {
|
|
Enabled = "enabled",
|
|
Paused = "paused",
|
|
Disabled = "disabled",
|
|
Retrying = "retrying"
|
|
}
|
|
export declare const SinkStatusSerializer: {
|
|
_fromJsonObject(object: any): SinkStatus;
|
|
_toJsonObject(self: SinkStatus): any;
|
|
};
|