From c5596d16e5dffe94924efceea95b772d4bfd0221 Mon Sep 17 00:00:00 2001
From: marihachi <marihachi0620@gmail.com>
Date: Sat, 27 Mar 2021 18:47:58 +0900
Subject: [PATCH] fix type definition of MfmSearch

---
 src/node.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/node.ts b/src/node.ts
index b0bbd1d..9470cc3 100644
--- a/src/node.ts
+++ b/src/node.ts
@@ -11,7 +11,7 @@ export type MfmQuote = {
 export type MfmSearch = {
 	type: 'search';
 	props: {
-		q: string;
+		query: string;
 		content: string;
 	};
 	children?: [];
-- 
GitLab