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 76e8231 commit e606538Copy full SHA for e606538
packages/graphql-playground-html/src/render-playground-page.ts
@@ -12,9 +12,12 @@ export interface MiddlewareOptions {
12
codeTheme?: EditorColours
13
}
14
15
+export type CursorShape = 'line' | 'block' | 'underline'
16
export type Theme = 'dark' | 'light'
17
+
18
export interface ISettings {
19
'general.betaUpdates': boolean
20
+ 'editor.cursorShape': CursorShape
21
'editor.theme': Theme
22
'editor.reuseHeaders': boolean
23
'tracing.hideTracingResponse': boolean
0 commit comments