@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
15 lines • 454 B
TypeScript
//#region src/hooks/use-processing/index.d.ts
/**
* `useProcessing` is a custom hook for handling processing states.
*
* @see https://yamada-ui.com/docs/hooks/use-processing
*/
declare const useProcessing: (init?: boolean) => {
finish: () => void;
loading: boolean;
start: () => void;
};
type UseProcessingReturn = ReturnType<typeof useProcessing>;
//#endregion
export { UseProcessingReturn, useProcessing };
//# sourceMappingURL=index.d.ts.map