From 33868a39959ee6c3a56242840deb2245b2a9c2b0 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Mon, 17 Jun 2024 17:03:39 +0200 Subject: [PATCH] chore(model): :label: add meaningful string type aliases --- types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types.ts b/types.ts index b90965d..96a3861 100644 --- a/types.ts +++ b/types.ts @@ -27,4 +27,5 @@ export type Posix = { shell: string } -export type Base64String = string +export type Base64String = `${string}` +export type UrlString = `${string}`