@veltdev/sdk
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
36 lines (35 loc) • 640 B
TypeScript
export declare class Location {
/**
* Unique identifier for the location.
*/
id?: string;
/**
* Name of the location.
*/
locationName?: string;
/**
* Version provided by the user.
*/
version?: Version;
[key: string]: any;
}
export declare class Version {
/**
* Unique identifier for the version.
*/
id: string;
/**
* Name of the version.
*/
name: string;
}
export declare class SetLocationsRequestOptions {
/**
* Root location.
*/
rootLocationId?: string;
/**
* Merge locations.
*/
appendLocation?: boolean;
}