UNPKG

@finos/legend-graph

Version:
41 lines 1.71 kB
/** * Copyright (c) 2020-present, Goldman Sachs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * When we make application config generic, we can probably remove this * See https://github.com/finos/legend-studio/issues/407 */ export declare class TEMPORARY__AbstractEngineConfig { env?: string | undefined; tabSize: number; currentUserId?: string | undefined; baseUrl?: string | undefined; baseUrlForServiceRegistration?: string | undefined; useClientRequestPayloadCompression: boolean; useBase64ForAdhocConnectionDataUrls: boolean; enableDebuggingPayload: boolean; useDevClientProtocol: boolean; constructor(); setEnv(val: string | undefined): void; setTabSize(val: number): void; setCurrentUserId(val: string | undefined): void; setBaseUrl(val: string | undefined): void; setBaseUrlForServiceRegistration(val: string | undefined): void; setUseClientRequestPayloadCompression(val: boolean): void; setUseBase64ForAdhocConnectionDataUrls(val: boolean): void; setEnableDebuggingPayload(val: boolean): void; setUseDevClientProtocol(val: boolean): void; } //# sourceMappingURL=TEMPORARY__AbstractEngineConfig.d.ts.map