/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface EditorDto */ export interface EditorDto { /** * The name of the editor. * @type {string} * @memberof EditorDto */ name: string; /** * The url to the editor. * @type {string} * @memberof EditorDto */ url: string; } /** * Check if a given object implements the EditorDto interface. */ export declare function instanceOfEditorDto(value: any): value is EditorDto; export declare function EditorDtoFromJSON(json: any): EditorDto; export declare function EditorDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): EditorDto; export declare function EditorDtoToJSON(value?: EditorDto | null, _ignoreDiscriminator?: boolean): any;