UNPKG

@bufbuild/cel

Version:

A CEL evaluator for ECMAScript

8 lines (7 loc) 285 B
import { type CelValue } from "./type.js"; /** * Creates a new CelValue of the given type and with the given fields. * * Wrappers are converted to their corresponding scalars. */ export declare function celObject(typeName: string, fields: ReadonlyMap<string, CelValue>): CelValue;