InterfaceMemberProperty
ts
export interface InterfaceMemberProperty {
name: string;
optional?: boolean;
readonly?: boolean;
type?: string;
jsdoc?: string;
loc?: Range;
}WARNING
Not to be used directly.
Representation of a property member in an interface within the TypeScript AST. This interface includes properties for the name of the property, whether it is optional or readonly, its type, any JSDoc comments associated with it, and its location in the source code for reference.