@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
8 lines (7 loc) • 357 B
TypeScript
import { type Accessor } from "solid-js";
/** 自动根据父元素的大小变更自己的大小 */
export declare const useAutoResize: (ElRef: Accessor<HTMLElement | null>) => {
sizer: import("@cn-ui/reactive").ComputedAtom<HTMLElement | null>;
width: import("@cn-ui/reactive").Atom<number>;
height: import("@cn-ui/reactive").Atom<number>;
};