mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
16 lines
331 B
TypeScript
16 lines
331 B
TypeScript
/// <reference types="svelte" />
|
|
|
|
export default class TabContent {
|
|
$$prop_def: svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> & {
|
|
/**
|
|
* Set an id for the top-level element
|
|
*/
|
|
id?: string;
|
|
};
|
|
|
|
$$slot_def: {
|
|
default: {};
|
|
};
|
|
|
|
$on(eventname: string, cb: (event: Event) => void): () => void;
|
|
}
|