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 cf6a7a5 commit c4d2e35Copy full SHA for c4d2e35
typings/tutorial.d.ts
@@ -3,6 +3,7 @@ export type Maybe<T> = T | null
3
export type TutorialConfig = {
4
testRunner: TutorialTestRunner
5
repo: TutorialRepo
6
+ dependencies?: TutorialDependency[]
7
}
8
9
/** Logical groupings of tasks */
@@ -57,3 +58,8 @@ export interface TutorialRepo {
57
58
uri: string
59
branch: string
60
61
+
62
+export interface TutorialDependency {
63
+ name: string
64
+ version: string
65
+}
0 commit comments