@vulform/core
Version:
Core utilities and types for VulForm packages
12 lines • 669 B
TypeScript
/**
* VulForm Core Package
* Shared utilities, types, and API client for all VulForm packages
*/
export * from './types';
export * from './utils';
export * from './config';
export { VulFormApiClient, VulFormError } from './utils/api-client';
export { FormValidator, RealtimeValidator } from './utils/validation';
export { resolveApiUrl, createSaaSConfig, createSelfHostedConfig, createCustomConfig, isValidVulFormUrl, normalizeApiUrl, } from './config';
export type { FormTemplate, FormField, FieldType, VulFormProps, SubmissionResponse, FormError, ValidationErrors, ExportOptions, ExportResult, ApiClientConfig, } from './types';
//# sourceMappingURL=index.d.ts.map