<T>(t: T): T Returns the first arg.
t
type
Treturns
T 6 declarations
<T>(t: T): T Returns the first arg.
tTT (...args: any[]): any Does nothing when called.
argsany[]any (...args: any[]): Promise<any> Async function that returns a resolved promise.
argsany[]Promise<any> Promise<void> A singleton resolved Promise.
Thunk<T> Represents a value wrapped in a function. Useful for lazy values and bridging reactive boundaries in Svelte.
T<T>(value: T | Thunk<T>): T Returns the result of calling value if it's a function,
otherwise it's like the identity function and passes it through.
valueT | Thunk<T>T