mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
31 lines
1.2 KiB
TypeScript
31 lines
1.2 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
import { type ReactNode } from 'react';
|
|
type ContextValue = {
|
|
/**
|
|
* The item that the user last opened, `null` when there's none open. On
|
|
* initial render, it will always be `null`, which doesn't necessarily mean
|
|
* there's no category open (can have 0, 1, or many being initially open).
|
|
*/
|
|
expandedItem: number | null;
|
|
/**
|
|
* Set the currently expanded item, when the user opens one. Set the value to
|
|
* `null` when the user closes an open category.
|
|
*/
|
|
setExpandedItem: (a: number | null) => void;
|
|
};
|
|
/**
|
|
* Should be used to wrap one sidebar category level. This provider syncs the
|
|
* expanded states of all sibling categories, and categories can choose to
|
|
* collapse itself if another one is expanded.
|
|
*/
|
|
export declare function DocSidebarItemsExpandedStateProvider({ children, }: {
|
|
children: ReactNode;
|
|
}): JSX.Element;
|
|
export declare function useDocSidebarItemsExpandedState(): ContextValue;
|
|
export {};
|
|
//# sourceMappingURL=docSidebarItemsExpandedState.d.ts.map
|