Skip to content

Commit ae29011

Browse files
committed
feat: extend GenericInput and SubFlowInput interfaces to inherit from Input
1 parent 60f85e7 commit ae29011

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/util/schema.util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ interface Input {
2525
* Represents a generic input type with no specific structure.
2626
* Used as a fallback when the type cannot be determined.
2727
*/
28-
interface GenericInput {
28+
interface GenericInput extends Input {
2929
input?: "generic";
3030
}
3131

3232
/**
3333
* Represents a sub-flow input type (callable/function type).
3434
* Used for types that have call signatures.
3535
*/
36-
interface SubFlowInput {
36+
interface SubFlowInput extends Input {
3737
input?: "sub-flow";
3838
}
3939

0 commit comments

Comments
 (0)