Merge pull request #2208 from helderco/docs-types

docs: Add types reference
This commit is contained in:
Solomon Hykes
2022-04-15 18:34:41 -05:00
committed by GitHub
5 changed files with 48 additions and 6 deletions

View File

@@ -10,11 +10,6 @@ package dagger
$dagger: fs: _id: string | null
}
// An empty directory
#Scratch: #FS & {
$dagger: fs: _id: null
}
// A reference to an external secret, for example:
// - A password
// - A SSH private key

View File

@@ -0,0 +1,6 @@
package dagger
// An empty filesystem tree
#Scratch: #FS & {
$dagger: fs: _id: null
}