Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
omni-code / tui / dist / components / Panel.d.ts
Size: Mime:
import React, { type ReactNode } from "react";
type Props = {
    title?: string;
    focused?: boolean;
    height?: number | string;
    width?: number | string;
    flexGrow?: number;
    flexShrink?: number;
    children: ReactNode;
    badge?: ReactNode;
};
export declare function Panel({ title, focused, height, width, flexGrow, flexShrink, children, badge, }: Props): React.JSX.Element;
export declare function useTerminalSize(): {
    cols: number;
    rows: number;
};
export {};
//# sourceMappingURL=Panel.d.ts.map