mirror of
https://github.com/project-gauntlet/gauntlet.git
synced 2025-12-23 10:35:53 +00:00
44 lines
796 B
TOML
44 lines
796 B
TOML
[gauntlet]
|
|
name = 'Docs Command'
|
|
description = ''
|
|
|
|
# docs-code-segment:start simple
|
|
[[entrypoint]]
|
|
id = 'simple'
|
|
name = 'Simple'
|
|
path = 'src/simple.tsx'
|
|
type = 'command'
|
|
description = ''
|
|
# docs-code-segment:end
|
|
|
|
# docs-code-segment:start assets
|
|
[[entrypoint]]
|
|
id = 'assets'
|
|
name = 'Assets'
|
|
path = 'src/assets.tsx'
|
|
type = 'command'
|
|
description = ''
|
|
# docs-code-segment:end
|
|
|
|
# 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 = 'command'
|
|
description = ''
|
|
|
|
[[entrypoint.preferences]]
|
|
id = 'testStr'
|
|
name = 'Test String Preference'
|
|
type = 'string'
|
|
default = 'test_value'
|
|
description = ""
|
|
# docs-code-segment:end
|