/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 LocateResult */ export interface LocateResult { /** * * @type {string} * @memberof LocateResult */ path: string | null; /** * * @type {number} * @memberof LocateResult */ workspace?: number | null; /** * * @type {string} * @memberof LocateResult */ workspaceRelativePath?: string | null; } export declare function LocateResultFromJSON(json: any): LocateResult; export declare function LocateResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocateResult; export declare function LocateResultToJSON(value?: LocateResult | null): any;