UNPKG

@drop-in/new

Version:

A SvelteKit Svelte 5 PocketBase Starter Kit with a CLI

5 lines (4 loc) 141 B
/** * Expand/simplifies a type for display in Intellisense. */ export type Expand<T> = T extends infer O ? {[K in keyof O]: O[K]} : never;