mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 16:09:18 +00:00
9 lines
332 B
TypeScript
9 lines
332 B
TypeScript
import { ErrorLike } from "@videojs/media";
|
|
//#region src/ui/error-dialog/context.d.ts
|
|
interface ErrorDialogContextValue {
|
|
lastError: ErrorLike | null;
|
|
}
|
|
declare function useErrorDialogContext(): ErrorDialogContextValue;
|
|
//#endregion
|
|
export { ErrorDialogContextValue, useErrorDialogContext };
|
|
//# sourceMappingURL=context.d.ts.map
|