refactor(model): ♻️ update url string type to be more specific

This commit is contained in:
Julien Oculi 2024-06-17 17:08:04 +02:00
parent 33868a3995
commit 42006cc18e

View file

@ -28,4 +28,9 @@ export type Posix = {
}
export type Base64String = `${string}`
export type UrlString = `${string}`
export type UrlString = `${
| 'data:'
| 'file://'
| 'http://'
| 'https://'
| 'git:'}${string}`