mirror of
https://github.com/project-gauntlet/gauntlet.git
synced 2025-12-23 10:35:53 +00:00
26 lines
475 B
TOML
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
|