-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(abg)!: Allow to wire typed outputs to matching typed inputs
- Loading branch information
Showing
37 changed files
with
1,411 additions
and
522 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
.../kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/domain/ActionTypings.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package io.github.typesafegithub.workflows.actionbindinggenerator.domain | ||
|
||
import io.github.typesafegithub.workflows.actionbindinggenerator.typing.Typing | ||
|
||
public data class ActionTypings( | ||
val inputTypings: Map<String, Typing> = emptyMap(), | ||
val outputTypings: Map<String, Typing> = emptyMap(), | ||
val source: TypingActualSource? = null, | ||
) |
Oops, something went wrong.