Skip to content

Commit

Permalink
updating comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sordina committed Nov 21, 2023
1 parent 3c3ad4f commit 1a0c8f5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/infer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,9 @@ function which_flags(flags_enum: Record<string, string | number>, value: number)
}

type ObjectTypeInfo = {
// The name of the type (not including generic type parameters)
// The qualified name of the type
type_name: string,
// Any type parameter types used with this type, useful for forming
// a closed generic name (eg IThing<string,number> could become IThing_string_number)
// Parameter types used with this type in positional order
generic_parameter_types: readonly ts.Type[]
// The member properties of the object type. The types are
// concrete types after type parameter resolution
Expand Down

0 comments on commit 1a0c8f5

Please sign in to comment.