interview-widget 3.1.2 → 3.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,6 +11,7 @@ export declare const useProctoring: () => ProctoringContextType;
|
|
|
11
11
|
interface Props {
|
|
12
12
|
children: React.ReactNode;
|
|
13
13
|
onDisqualify?: (() => void) | undefined;
|
|
14
|
+
isCompleted?: boolean;
|
|
14
15
|
}
|
|
15
16
|
export interface InterviewProctoringHandle {
|
|
16
17
|
exitFullScreenIntentionally: () => Promise<void>;
|
package/dist/utils/helper.d.ts
CHANGED
|
@@ -7,4 +7,4 @@ export declare function generateButtonGradient(baseColor: string): string;
|
|
|
7
7
|
export declare const generateUniqueId: () => string;
|
|
8
8
|
export declare function decodeJwt(token: string): Record<string, any> | null;
|
|
9
9
|
export declare const getFirstCapital: (str: string | null | undefined) => string;
|
|
10
|
-
export declare const formatTime: (seconds: number) => string;
|
|
10
|
+
export declare const formatTime: (seconds: number, showSec?: boolean) => string;
|