mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 08:15:53 +00:00
style: 完成所有文件的lint
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
// Auto-generated stub — replace with real implementation
|
||||
export {};
|
||||
export const WebBrowserPanel: (props: Record<string, unknown>) => null = () => null;
|
||||
export {}
|
||||
export const WebBrowserPanel: (props: Record<string, unknown>) => null = () =>
|
||||
null
|
||||
|
||||
@@ -7,13 +7,13 @@ const WEB_BROWSER_TOOL_NAME = 'WebBrowser'
|
||||
|
||||
const inputSchema = lazySchema(() =>
|
||||
z.strictObject({
|
||||
url: z
|
||||
.string()
|
||||
.describe('URL to fetch and extract content from.'),
|
||||
url: z.string().describe('URL to fetch and extract content from.'),
|
||||
action: z
|
||||
.enum(['navigate', 'screenshot'])
|
||||
.optional()
|
||||
.describe('Action to perform. "navigate" fetches page content (default). "screenshot" returns a text snapshot of the page.'),
|
||||
.describe(
|
||||
'Action to perform. "navigate" fetches page content (default). "screenshot" returns a text snapshot of the page.',
|
||||
),
|
||||
}),
|
||||
)
|
||||
type InputSchema = ReturnType<typeof inputSchema>
|
||||
|
||||
Reference in New Issue
Block a user