UNPKG

@vinejs/compiler

Version:

Low level compiler for VineJS validator

12 lines (11 loc) 340 B
import type { RefIdentifier } from '../../types.js'; type FieldOptions = { variableName: string; parseFnRefId?: RefIdentifier; }; /** * Returns JS fragment to call the parse function on the union conditional * schema. */ export declare function callParseFunction({ parseFnRefId, variableName }: FieldOptions): string; export {};