All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
10 lines
333 B
TypeScript
10 lines
333 B
TypeScript
/// <reference types="react" />
|
|
/**
|
|
* A React context for sharing the `focused` state of the editor.
|
|
*/
|
|
export declare const FocusedContext: import("react").Context<boolean>;
|
|
/**
|
|
* Get the current `focused` state of the editor.
|
|
*/
|
|
export declare const useFocused: () => boolean;
|
|
//# sourceMappingURL=use-focused.d.ts.map
|