Skip to content

Commit 9cecf13

Browse files
Remove unnecessary quotes from TypeScript property names
Unquote ui, csp, domain, and prefersBorder properties in the resources/read response TypeScript example to follow standard TypeScript syntax conventions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 774e9e1 commit 9cecf13

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

specification/draft/apps.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ The resource content is returned via `resources/read`:
8181
text?: string; // HTML content as string
8282
blob?: string; // OR base64-encoded HTML
8383
_meta?: {
84-
"ui"?: {
85-
"csp"?: {
84+
ui?: {
85+
csp?: {
8686
connect_domains?: string[]; // Origins for fetch/XHR/WebSocket
8787
resource_domains?: string[]; // Origins for images, scripts, etc
8888
};
89-
"domain"?: string;
90-
"prefersBorder"?: boolean;
89+
domain?: string;
90+
prefersBorder?: boolean;
9191
};
9292
};
9393
}];

0 commit comments

Comments
 (0)