UNPKG

@finos/legend-extension-dsl-data-quality

Version:
38 lines 2.05 kB
/** * Copyright (c) 2026-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 { SUPPORTED_TYPES } from '../constants/DataQualityConstants.js'; import { type ObserverContext, type PureModel } from '@finos/legend-graph'; export declare class DataQualityFunctionDefaults { static getHelperFunctionDefaults(functionName: string, graph: PureModel, observerContext: ObserverContext): import("@finos/legend-graph").PrimitiveInstanceValue[]; static getFilterFunctionDefaults(functionName: string): { defaultParams: { column: { type: SUPPORTED_TYPES; }; otherParams: never[]; }; }; static getPureFunctionDefaults(functionName: string, graph: PureModel, observerContext: ObserverContext): import("@finos/legend-graph").PrimitiveInstanceValue[] | import("@finos/legend-graph").CollectionInstanceValue[]; static getFunctionDescriptionTemplate(functionName: string): string; static getFunctionNameTemplate(functionName: string): string; static pureFunctionValidationNameTemplates: Record<string, string>; static helperFunctionValidationNameTemplates: Record<string, string>; static helperFunctionValidationDescriptionTemplates: Record<string, string>; static pureFunctionValidationDescriptionTemplates: Record<string, string>; private static readonly FUNCTIONS_ACCEPTING_OPTIONAL; static getIsPureFunctionColumnRequired(functionName: string): boolean; } //# sourceMappingURL=DataQualityFunctionDefaults.d.ts.map