@fish-render/descriptions
Version:
Fish Render descriptions component for Vue 3
5 lines (4 loc) • 336 B
TypeScript
export declare const breakpoints: readonly ["xs", "sm", "md", "lg", "xl"];
export type Breakpoint = (typeof breakpoints)[number];
export type BreakpointValues = Record<Breakpoint, number>;
export declare function getInheritedValues(defaults: Partial<BreakpointValues>, userValues: number | Partial<BreakpointValues>): BreakpointValues;