UNPKG

275 BTypeScriptView Raw
1import { Options } from './types';
2interface ReturnType {
3 animationDuration: number;
4 isFinished: boolean;
5 progress: number;
6}
7export declare const useNProgress: ({ animationDuration, incrementDuration, isAnimating, minimum, }?: Options) => ReturnType;
8export {};