mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 03:26:36 +00:00
18 lines
337 B
TypeScript
18 lines
337 B
TypeScript
/// <reference types="svelte" />
|
|
|
|
export interface HeadActionsProps {
|
|
/**
|
|
* Set the width of the head actions
|
|
* @default "100%"
|
|
*/
|
|
width?: string;
|
|
}
|
|
|
|
export default class HeadActions {
|
|
$$prop_def: HeadActionsProps;
|
|
$$slot_def: {
|
|
default: {};
|
|
};
|
|
|
|
$on(eventname: string, cb: (event: Event) => void): () => void;
|
|
}
|