apple-svelte
Version:
Component library for Svelte based on Apple's Human Interface design language.
35 lines (34 loc) • 1.07 kB
TypeScript
export default SidebarSectionAddItemButton;
type SidebarSectionAddItemButton = SvelteComponent<{
symbol?: string;
id?: any;
style?: any;
onPress?: any;
title?: string;
}, {
[evt: string]: CustomEvent<any>;
}, {}> & {
$$bindings?: string;
};
declare const SidebarSectionAddItemButton: $$__sveltets_2_IsomorphicComponent<{
symbol?: string;
id?: any;
style?: any;
onPress?: any;
title?: string;
}, {
[evt: string]: CustomEvent<any>;
}, {}, {}, string>;
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
$$bindings?: Bindings;
} & Exports;
(internal: unknown, props: Props & {
$$events?: Events;
$$slots?: Slots;
}): Exports & {
$set?: any;
$on?: any;
};
z_$$bindings?: Bindings;
}