You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constenumConstEnum{/** * The value one. * * The value one defined in the constant enumeration. */ONE=1,/** * The value two. * * The value two defined in the constant enumeration. */TWO=2,}constapp=typia.json.application<[ConstEnum]>();console.log(app.components.schemas?.ConstEnum);
{
oneOf: [
{
const: 1,
title: 'The value one',
description: 'The value one.\n\nThe value one defined in the constant enumeration.'
},
{
const: 2,
title: 'The value two',
description: 'The value two.\n\nThe value two defined in the constant enumeration.'
}
]
}
Make this code works.
The text was updated successfully, but these errors were encountered:
Make this code works.
The text was updated successfully, but these errors were encountered: