UNPKG

@itwin/clash-detection-client

Version:

Clash Detection client for the iTwin platform

16 lines 857 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** * Values for return preference used in `Prefer` header. The header value is formed by joining * `return=` and the enum value. */ export var PreferReturn; (function (PreferReturn) { /** Instructs the server to return minimal entity representation. */ PreferReturn["Minimal"] = "minimal"; /** Instructs the server to return full entity representation. */ PreferReturn["Representation"] = "representation"; })(PreferReturn || (PreferReturn = {})); //# sourceMappingURL=CommonInterfaces.js.map