gather-content-ui
Version:
GatherContent UI Library
48 lines • 1.05 kB
TypeScript
export declare function getDropdownItems(): {
name: string;
action(): void;
}[];
export declare function getDropdownItemsWithActive(): ({
name: string;
action(): void;
active?: undefined;
} | {
name: string;
active: boolean;
action(): void;
})[];
export declare function getDropdownItemsWithSeparator(): ({
name: string;
action(): void;
type?: undefined;
} | {
type: string;
name?: undefined;
action?: undefined;
})[];
export declare function getDropdownAvatar(): ({
name: string;
action: () => void;
additional: import("react/jsx-runtime").JSX.Element;
type: string;
email?: undefined;
url?: undefined;
initials?: undefined;
} | {
type: string;
name: string;
email: string;
url: string;
initials: string;
action(): void;
additional?: undefined;
} | {
type: string;
name: string;
email: string;
initials: string;
action(): void;
additional?: undefined;
url?: undefined;
})[];
//# sourceMappingURL=data.d.ts.map