From f6a10af0a81a1b3a83bdce660ed5ee88abcc063a Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Wed, 28 Dec 2022 11:35:45 -0500 Subject: first attempt Signed-off-by: Xe Iaso --- dhall/types/Story.dhall | 5 +++++ dhall/types/StoryStep.dhall | 3 +++ dhall/types/package.dhall | 2 ++ 3 files changed, 10 insertions(+) create mode 100644 dhall/types/Story.dhall create mode 100644 dhall/types/StoryStep.dhall (limited to 'dhall/types') diff --git a/dhall/types/Story.dhall b/dhall/types/Story.dhall new file mode 100644 index 0000000..1f11a2e --- /dev/null +++ b/dhall/types/Story.dhall @@ -0,0 +1,5 @@ +let Step = ./StoryStep.dhall + +in { Type = { name : Text, steps : List Step.Type } + , default = { name = "", steps = [] : List Step.Type } + } diff --git a/dhall/types/StoryStep.dhall b/dhall/types/StoryStep.dhall new file mode 100644 index 0000000..3c7ac4f --- /dev/null +++ b/dhall/types/StoryStep.dhall @@ -0,0 +1,3 @@ +{ Type = { file : Text, title : Text, text : Text } +, default = { file = "", text = "", title = "" } +} diff --git a/dhall/types/package.dhall b/dhall/types/package.dhall index 4f4166e..75abd4a 100644 --- a/dhall/types/package.dhall +++ b/dhall/types/package.dhall @@ -10,5 +10,7 @@ , Salary = ./Salary.dhall , SeriesDescription = ./SeriesDescription.dhall , Stock = ./Stock.dhall +, Story = ./Story.dhall +, StoryStep = ./StoryStep.dhall , StockKind = ./StockKind.dhall } -- cgit v1.2.3