Thanks to visit codestin.com Credit goes to github.com
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 2eb1c0a commit 124a092Copy full SHA for 124a092
typings/tutorial.d.ts
@@ -14,6 +14,7 @@ export type TutorialConfig = {
14
dependencies?: TutorialDependency[]
15
setup?: StepActions
16
reset?: ConfigReset
17
+ webhook?: WebhookConfig
18
}
19
20
/** Logical groupings of tasks */
@@ -92,3 +93,17 @@ export interface TutorialAppVersions {
92
93
94
95
export type VSCodeCommand = string | [string, any]
96
+
97
+export interface WebhookConfig {
98
+ url: string
99
+ config: {
100
+ token: boolean
101
+ }
102
+ events: {
103
+ init?: boolean
104
+ reset?: boolean
105
+ step_complete?: boolean
106
+ level_complete?: boolean
107
+ tutorial_complete?: boolean
108
109
+}
0 commit comments