We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47cf67b commit 108ff85Copy full SHA for 108ff85
web/src/utils/functions.ts
@@ -18,7 +18,7 @@ type FunctionDetails = {
18
description?: string;
19
pair?: boolean;
20
examples?: { code: string; description?: string }[];
21
- notes?: string;
+ notes?: string[];
22
parameters?: FunctionParameter[];
23
};
24
@@ -67,7 +67,7 @@ export type FunctionInfo = {
67
typePretty: string;
68
pair: boolean;
69
examples: { code: string; description?: string }[];
70
- notes?: string; // Added notes
+ notes?: string[]; // Added notes
71
parameters?: FunctionParameter[]; // Added parameters
72
73
0 commit comments