@finos/legend-application-studio
Version:
Legend Studio application core
45 lines • 2.29 kB
TypeScript
/**
* 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 { GeneratorFn } from '@finos/legend-shared';
import type { EditorStore } from '../../../EditorStore.js';
import { type MappingElement } from './MappingEditorState.js';
import type { PropertyMapping, InstanceSetImplementation, SetImplementation, Type } from '@finos/legend-graph';
import { LambdaEditorState } from '@finos/legend-query-builder';
import { MappingEditorTabState } from './MappingTabManagerState.js';
export declare class MappingElementState extends MappingEditorTabState {
readonly editorStore: EditorStore;
readonly mappingElement: MappingElement;
constructor(editorStore: EditorStore, mappingElement: MappingElement);
get label(): string;
}
export declare abstract class SetImplementationState extends MappingElementState {
mappingElement: SetImplementation;
}
export declare abstract class InstanceSetImplementationState extends SetImplementationState {
mappingElement: InstanceSetImplementation;
propertyMappingStates: PropertyMappingState[];
selectedType?: Type | undefined;
constructor(editorStore: EditorStore, setImplementation: InstanceSetImplementation);
setSelectedType(type: Type | undefined): void;
abstract decorate(): void;
abstract convertPropertyMappingTransformObjects(): GeneratorFn<void>;
}
export declare abstract class PropertyMappingState extends LambdaEditorState {
instanceSetImplementationState: InstanceSetImplementationState;
propertyMapping: PropertyMapping;
constructor(instanceSetImplementationState: InstanceSetImplementationState, propertyMapping: PropertyMapping, lambdaString: string, lambdaPrefix: string);
}
//# sourceMappingURL=MappingElementState.d.ts.map