mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 19:46:36 +00:00
- Use `SvelteComponent` instead of `SvelteComponentTyped` - use `local` transitions for backwards-compatibility
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponent } from "svelte";
|
|
|
|
export interface HeaderUtilitiesProps {}
|
|
|
|
export default class HeaderUtilities extends SvelteComponent<
|
|
HeaderUtilitiesProps,
|
|
{},
|
|
{ default: {} }
|
|
> {}
|