Skip to content

Commit

Permalink
mod
Browse files Browse the repository at this point in the history
  • Loading branch information
irishcarbomb777 committed Apr 1, 2024
1 parent 79656b5 commit b51e3a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/types/AirEdge.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@


export type AirEdge<T extends string, P extends Record<string, any>=Record<string, any>> = {
export type AirEdge<T extends string, P extends Record<string, any> = Record<string, any>> = {
fromNodeId: string;
toNodeId: string;
edgeType: T;
} & P;
} & P;


0 comments on commit b51e3a2

Please sign in to comment.