mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 00:36:38 -04:00
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import type { DynamicSvelteComponent } from "sveltelib/dynamicComponent";
|
|
|
|
export interface ButtonGroupProps {
|
|
id: string;
|
|
className?: string;
|
|
buttons: DynamicSvelteComponent[];
|
|
}
|