9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
export declare enum SinkStatusIn {
|
|
Enabled = "enabled",
|
|
Disabled = "disabled"
|
|
}
|
|
export declare const SinkStatusInSerializer: {
|
|
_fromJsonObject(object: any): SinkStatusIn;
|
|
_toJsonObject(self: SinkStatusIn): any;
|
|
};
|