Loose string schema

Does arktype have loose string support? though the schema can accept any string, the infered type can be something like
type Thing = "literal" | "or" | "any" | (string & {})
type Thing = "literal" | "or" | "any" | (string & {})
12 Replies
TizzySaurus
TizzySaurusβ€’3d ago
Maybe type("string").as<Thing>()?
TaQuanMinhLong
TaQuanMinhLongOPβ€’3d ago
there's no such infering from the schema to get that disired result?
const SomeHowDefineTheSchema = type(...)
type Infered = typeof SomeHowDefineTheSchema.infer
const SomeHowDefineTheSchema = type(...)
type Infered = typeof SomeHowDefineTheSchema.infer
TizzySaurus
TizzySaurusβ€’3d ago
I don't really understand what a "loose string" is
TaQuanMinhLong
TaQuanMinhLongOPβ€’3d ago
well you can try with the type Thing example above this works well, but then it's still that we're writing our own typescript type and arktype at the same
TizzySaurus
TizzySaurusβ€’3d ago
Bold of you to assume I've got access to my PC (I don't) :) Have you tried type.enum("'literal'", "'or'", "'any'", "string")?
TaQuanMinhLong
TaQuanMinhLongOPβ€’3d ago
No description
TaQuanMinhLong
TaQuanMinhLongOPβ€’3d ago
enum is for exact value right? which means we're passing the literal value there and if we add .or("string"), it still infers as string
TizzySaurus
TizzySaurusβ€’3d ago
Sorry, I meant type.or(xxx, yyy, zzz, aaa) But yeah, it's likely TS just reduces it
TaQuanMinhLong
TaQuanMinhLongOPβ€’3d ago
it's invalid in arktype, but valid in typescript
No description
πŸŒΊπŸ‡«πŸ‡· Shigu :3 🌺
When you do (string & {}) in a union of string literals it allows autocomplete while not rejecting other strings. I tried a bunch of weird workarounds and the only one I got working was by making union with "string" (type.or("string")) and wrap that is a function that casts the return type. so
function Autocomplete<T extends string, U>(type: Type<T, U>): Type<T | (string & {}), U> {
return <any>type.or("string");
}
function Autocomplete<T extends string, U>(type: Type<T, U>): Type<T | (string & {}), U> {
return <any>type.or("string");
}
though it is kinda sketchy
ssalbdivad
ssalbdivadβ€’3d ago
@TizzySaurus's original suggestion was optimal:
type Suggestions = "literal" | "or" | "any"

const autocomplete = type("string").as<Suggestions | (string & {})>()
type Suggestions = "literal" | "or" | "any"

const autocomplete = type("string").as<Suggestions | (string & {})>()
string & {} is just a TypeScript trick to get completions and has no meaning at runtime. The only thing you actually want to validate in that case is string When a "feature" like (string & {}) has no effect at runtime, a cast is appropriate as there's no meaningful runtime value to derive the type from

Did you find this page helpful?