UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

13 lines (12 loc) 299 B
interface Layout { twoThirds: number; oneThird: number; fullWidth: number; } export default function useLayout(): Layout; export declare function calculateLayout(stdout: NodeJS.WriteStream | undefined): { fullWidth: number; oneThird: number; twoThirds: number; }; export {};