reexport StaticDecode

This commit is contained in:
2025-06-09 13:12:17 +02:00
parent 4ef243ba96
commit a5651ba027
+1 -1
View File
@@ -5,7 +5,7 @@ import logger from 'log'
import {read_object} from './src/read_type'
const log = logger('config')
export {Type, type Static} from '@sinclair/typebox' // Re-export Type so users can describe config
export {Type, type Static, type StaticDecode} from '@sinclair/typebox' // Re-export Type so users can describe config
export {Value} from '@sinclair/typebox/value'
export async function parse<T extends TProperties>(scheme: TObject<T>): Promise<Static<TObject<T>> | null> {