UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

7 lines (6 loc) 235 B
interface Options { onFulfilled?: () => unknown; onRejected?: (error: Error) => void; } export default function useAsyncAndUnmount(asyncFunction: () => Promise<unknown>, { onFulfilled, onRejected }?: Options): void; export {};