10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
// Re-export types from their specific modules
|
|
export type { Service } from './service';
|
|
|
|
export interface AccordionItemProps {
|
|
title: string;
|
|
children: React.ReactNode;
|
|
isOpen: boolean;
|
|
onToggle: () => void;
|
|
}
|