chore: Update fff to 0.9.4 (#31583)

This commit is contained in:
Dmitriy Kovalenko 2026-06-09 19:28:34 -07:00 committed by GitHub
commit e9e2612706
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 19 additions and 14 deletions

View file

@ -12,6 +12,10 @@ import {
type SearchResult,
} from "@ff-labs/fff-bun"
declare global {
const FFF_LIBC: "gnu" | "musl"
}
export type Result<T> = { ok: true; value: T } | { ok: false; error: string }
export type Init = InitOptions