This commit is contained in:
2026-06-11 20:37:13 -05:00
parent b362357bcb
commit a5e3915be5
7 changed files with 691 additions and 11 deletions

View File

@@ -8,8 +8,11 @@ import React from 'react';
interface Suggestion {
command: string;
description: string;
plugin: string;
syntax: string;
dangerous: boolean;
danger_reason?: string;
plugin: string;
examples: string[];
}
interface Props {