fui-fancyui
Version:
FancyUI Libary
10 lines (9 loc) • 511 B
TypeScript
import { TGridAreasBreakpoints } from '../../FancyGridTemplate/TFancyGridTemplate.model';
import { TFancySkeletonGrid } from '..';
type TgnerateGridSet<BreakPointName extends keyof TGridAreasBreakpoints & string> = {
gridAreas: TFancySkeletonGrid['gridAreas'];
gridAreasBreakPoints: TFancySkeletonGrid['gridAreasBreakPoints'];
activeBreakPoint: BreakPointName | null;
};
export declare const generateGridSet: (props: TgnerateGridSet<keyof TGridAreasBreakpoints & string>) => Set<string>;
export {};