Skip to content

ClassMemberMethod

ts
export interface ClassMemberMethod extends MethodItem {
}

WARNING

Not to be used directly.

Representation of a class member method in the TypeScript AST. This interface extends MethodItem and includes properties specific to method declarations within a class, such as the type (which is always "method") and the name of the class it belongs to.

References