/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const TaskState: { readonly NOT_STARTED: "NOT_STARTED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly COMPLETED: "COMPLETED"; readonly CANCELED: "CANCELED"; }; export type TaskState = typeof TaskState[keyof typeof TaskState]; export declare function instanceOfTaskState(value: any): boolean; export declare function TaskStateFromJSON(json: any): TaskState; export declare function TaskStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskState; export declare function TaskStateToJSON(value?: TaskState | null): any; export declare function TaskStateToJSONTyped(value: any, ignoreDiscriminator: boolean): TaskState;