From 1a8a9605c7a45c6d5fc12436252cd875a4fd668a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9da=20Housni=20Alaoui?= Date: Thu, 19 Sep 2024 17:42:41 +0200 Subject: [PATCH] Don't export BaseField --- src/field.ts | 2 +- src/index.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/field.ts b/src/field.ts index c885628..121de24 100644 --- a/src/field.ts +++ b/src/field.ts @@ -17,7 +17,7 @@ export type Field = * Fields can be used to automatically render forms or other UIs based on * hypermedia actions. */ -export interface BaseField { +interface BaseField { /** * Name of the field. * diff --git a/src/index.ts b/src/index.ts index b6dea86..638562c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -28,7 +28,6 @@ export { Problem } from './http/error'; export { Action } from './action'; export { Field, - BaseField, BooleanField, BasicStringField, DateTimeField,