/** * Daytona Toolbox API * Daytona Toolbox API * * The version of the OpenAPI document: v0.0.0-dev * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { LspLocation } from './lsp-location'; /** * * @export * @interface LspSymbol */ export interface LspSymbol { /** * * @type {number} * @memberof LspSymbol */ kind: number; /** * * @type {LspLocation} * @memberof LspSymbol */ location: LspLocation; /** * * @type {string} * @memberof LspSymbol */ name: string; }