@gamesberry/karmyc-core
Version:
A flexible and powerful layout management system for React applications
18 lines (17 loc) • 532 B
TypeScript
/**
* Hook pour gérer la logique de stack des aires
* @param areaId L'ID de l'aire à vérifier
* @returns Un objet contenant les informations sur la stack
*/
export declare const useAreaStack: (areaId: string) => {
isChildOfStack: boolean;
stackData: {
layoutId: string;
layout: import("..").AreaRowLayout;
areas: {
[key: string]: import("..").IArea<string>;
};
} | null;
firstChildOfRow: string | null | undefined;
lastChildOfRow: string | null | undefined;
};