Skip to content

Commit e606538

Browse files
Antoine Doubovetzkyhuv1k
authored andcommitted
add editor.cursorShape to ISettings interface (#937)
1 parent 76e8231 commit e606538

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/graphql-playground-html/src/render-playground-page.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ export interface MiddlewareOptions {
1212
codeTheme?: EditorColours
1313
}
1414

15+
export type CursorShape = 'line' | 'block' | 'underline'
1516
export type Theme = 'dark' | 'light'
17+
1618
export interface ISettings {
1719
'general.betaUpdates': boolean
20+
'editor.cursorShape': CursorShape
1821
'editor.theme': Theme
1922
'editor.reuseHeaders': boolean
2023
'tracing.hideTracingResponse': boolean

0 commit comments

Comments
 (0)