UNPKG

apple-svelte

Version:

Component library for Svelte based on Apple's Human Interface design language.

33 lines (32 loc) 1.01 kB
export default ListRowButtonTrailing; type ListRowButtonTrailing = SvelteComponent<{ id?: any; style?: any; label?: string; onPress?: any; }, { [evt: string]: CustomEvent<any>; }, {}> & { $$bindings?: string; }; declare const ListRowButtonTrailing: $$__sveltets_2_IsomorphicComponent<{ id?: any; style?: any; label?: string; onPress?: any; }, { [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; }