UNPKG

@finos/legend-studio

Version:
27 lines 2.09 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. */ import { type DataElement, type EmbeddedData, type ObserverContext, type ExternalFormatData, type ModelStoreData, type Class, type DataElementReference, type RelationalCSVDataTable, type RelationalCSVData } from '@finos/legend-graph'; export declare const dataElement_setEmbeddedData: (dataElement: DataElement, value: EmbeddedData, context: ObserverContext) => void; export declare const externalFormatData_setContentType: (externalFormatData: ExternalFormatData, value: string) => void; export declare const externalFormatData_setData: (externalFormatData: ExternalFormatData, value: string) => void; export declare const modelStoreData_setInstance: (modelStoreData: ModelStoreData, value: Map<Class, object>) => void; export declare const relationalData_setTableValues: (data: RelationalCSVDataTable, values: string) => void; export declare const relationalData_setTableSchemaName: (data: RelationalCSVDataTable, value: string) => void; export declare const relationalData_addTable: (data: RelationalCSVData, val: RelationalCSVDataTable) => void; export declare const relationalData_setTableName: (data: RelationalCSVDataTable, value: string) => void; export declare const relationalData_deleteData: (data: RelationalCSVData, val: RelationalCSVDataTable) => void; export declare const dataElementReference_setDataElement: (dataElementReference: DataElementReference, value: DataElement, context: ObserverContext) => void; //# sourceMappingURL=DSLData_GraphModifierHelper.d.ts.map