/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/react-resizable-panels/dist/declarations/src/PanelGroup.d.ts
38 строк
2 KB
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
import { Direction } from "./types.js"; import { CSSProperties, HTMLAttributes, PropsWithChildren } from "./vendor/react.js"; export type ImperativePanelGroupHandle = { getId: () => string; getLayout: () => number[]; setLayout: (layout: number[]) => void; }; export type PanelGroupStorage = { getItem(name: string): string | null; setItem(name: string, value: string): void; }; export type PanelGroupOnLayout = (layout: number[]) => void; export type PanelGroupProps = Omit<HTMLAttributes<keyof HTMLElementTagNameMap>, "id"> & PropsWithChildren<{ autoSaveId?: string | null; className?: string; direction: Direction; id?: string | null; keyboardResizeBy?: number | null; onLayout?: PanelGroupOnLayout | null; storage?: PanelGroupStorage; style?: CSSProperties; tagName?: keyof HTMLElementTagNameMap; dir?: "auto" | "ltr" | "rtl" | undefined; }>; export declare const PanelGroup: import("react").ForwardRefExoticComponent<Omit<HTMLAttributes<keyof HTMLElementTagNameMap>, "id"> & { autoSaveId?: string | null | undefined; className?: string | undefined; direction: Direction; id?: string | null | undefined; keyboardResizeBy?: number | null | undefined; onLayout?: PanelGroupOnLayout | null | undefined; storage?: PanelGroupStorage | undefined; style?: CSSProperties | undefined; tagName?: keyof HTMLElementTagNameMap | undefined; dir?: "auto" | "ltr" | "rtl" | undefined; } & { children?: import("react").ReactNode; } & import("react").RefAttributes<ImperativePanelGroupHandle>>;