/** * 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 RegistryEventAction: { readonly push: "push"; readonly pull: "pull"; readonly mount: "mount"; }; export type RegistryEventAction = typeof RegistryEventAction[keyof typeof RegistryEventAction]; export declare function instanceOfRegistryEventAction(value: any): boolean; export declare function RegistryEventActionFromJSON(json: any): RegistryEventAction; export declare function RegistryEventActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegistryEventAction; export declare function RegistryEventActionToJSON(value?: RegistryEventAction | null): any; export declare function RegistryEventActionToJSONTyped(value: any, ignoreDiscriminator: boolean): RegistryEventAction;