TsInterfaceDeclaration
interface TsInterfaceDeclaration extends Node, HasSpan {
body: TsInterfaceBody;
declare: boolean;
extends: TsExpressionWithTypeArguments[];
id: Identifier;
type: "TsInterfaceDeclaration";
typeParams?: TsTypeParameterDeclaration;
}