gauntlet/example_plugins/plugins/ui_preferences/gauntlet.toml
2025-04-24 21:13:43 +02:00

26 lines
475 B
TOML

[gauntlet]
name = 'Docs Preferences'
description = ''
# docs-code-segment:start preferences
[[preferences]]
id = 'testBool'
name = 'Test Boolean Preference'
type = 'bool'
default = true
description = ""
[[entrypoint]]
id = 'preferences'
name = 'Preferences'
path = 'src/preferences.tsx'
type = 'view'
description = ''
[[entrypoint.preferences]]
id = 'testStr'
name = 'Test String Preference'
type = 'string'
default = 'test_value'
description = ""
# docs-code-segment:end