ParsedItem
ts
export type ParsedItem = VariableItem | FunctionItem | ClassItem | InterfaceItem | TypeAliasItem | EnumItem | NamespaceItem;WARNING
Not to be used directly.
Representation of a parsed item in the TypeScript AST. This type is a union of various item types that can be encountered during the parsing process, such as variables, functions, classes, interfaces, type aliases, enums, and namespaces. Each of these item types has its own specific structure and properties that provide detailed information about the corresponding code element in the source code. The ParsedItem type serves as a common type for all these different item types, allowing for a more flexible and comprehensive representation of the parsed code elements.