UNPKG

@stihl-design-system/components

Version:

Welcome to the STIHL Design System react component library.

15 lines (14 loc) 657 B
export declare const validateTopBarChildren: ({ hasBrandArea, hasPrimaryArea, hasSecondaryArea, }: { hasBrandArea: boolean; hasPrimaryArea: boolean; hasSecondaryArea: boolean; }) => void; /** * Checks whether a value is undefined, null, or an empty plain object. * * @param obj - The value to check. * @returns `true` if the value is undefined, null, or a non-array object with no own enumerable properties; otherwise, `false`. */ export declare const isEmptyObjectOrUndefined: (obj: unknown) => boolean; export declare const BRAND_ADDON_VARIANT: readonly ["100years"]; export type BrandAddOnVariant = (typeof BRAND_ADDON_VARIANT)[number];