aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/state/models.ts
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-04-29 14:59:59 +0100
committerGitHub <noreply@github.com>2024-04-29 14:59:59 +0100
commitcea48a1545250429b78235b2ad00b8243923e2b2 (patch)
tree08866c06ee81bf841e6bf0f20feb9a88c9435cfa /ui/src/state/models.ts
parentchore(deps): bump rustix from 0.38.32 to 0.38.34 (#1986) (diff)
downloadatuin-cea48a1545250429b78235b2ad00b8243923e2b2.zip
feat(ui/dotfiles): add vars (#1989)
Diffstat (limited to 'ui/src/state/models.ts')
-rw-r--r--ui/src/state/models.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/src/state/models.ts b/ui/src/state/models.ts
index f11ce651..5afcb804 100644
--- a/ui/src/state/models.ts
+++ b/ui/src/state/models.ts
@@ -32,3 +32,9 @@ export interface Alias {
name: string;
value: string;
}
+
+export interface Var {
+ name: string;
+ value: string;
+ export: bool;
+}