import type { Resource } from "./Resource"; /** * Defines a reference for w workflow. * @product This is intended for internal use only within VertiGIS Studio products. */ export interface Reference extends Resource { /** Indicates the location of the source code to load. */ path: string; /** Indicates the suite to load. */ suite: string; }