mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
/// <reference types="svelte" />
|
|
import { LinkProps } from "./Link";
|
|
|
|
export interface OutboundLinkProps extends LinkProps {}
|
|
|
|
export default class OutboundLink {
|
|
$$prop_def: OutboundLinkProps;
|
|
$$slot_def: {
|
|
default: {};
|
|
};
|
|
|
|
$on(eventname: string, cb: (event: Event) => void): () => void;
|
|
}
|