interface ResolveFormulaParams {
    variables?: unknown;
    schema?: DataSchema;
    getDataCollection?: (
        key: string,
        parameters?: Record<string, unknown>,
    ) => Promise<DataCollectionSpec>;
    getInternalDataSchema?: (key: string) => Promise<DataSchema>;
}

Properties

variables?: unknown
schema?: DataSchema
getDataCollection?: (
    key: string,
    parameters?: Record<string, unknown>,
) => Promise<DataCollectionSpec>
getInternalDataSchema?: (key: string) => Promise<DataSchema>