@rkosafo/cai.components
Version:
This package is under development and not ready for public use.
26 lines (25 loc) • 1.39 kB
TypeScript
import { type NotificationItem, type NotificationListProps } from '../../index.js';
declare function $$render<T extends NotificationItem>(): {
props: NotificationListProps<T>;
exports: {};
bindings: "open";
slots: {};
events: {};
};
declare class __sveltets_Render<T extends NotificationItem> {
props(): ReturnType<typeof $$render<T>>['props'];
events(): ReturnType<typeof $$render<T>>['events'];
slots(): ReturnType<typeof $$render<T>>['slots'];
bindings(): "open";
exports(): {};
}
interface $$IsomorphicComponent {
new <T extends NotificationItem>(options: import('svelte').ComponentConstructorOptions<ReturnType<__sveltets_Render<T>['props']>>): import('svelte').SvelteComponent<ReturnType<__sveltets_Render<T>['props']>, ReturnType<__sveltets_Render<T>['events']>, ReturnType<__sveltets_Render<T>['slots']>> & {
$$bindings?: ReturnType<__sveltets_Render<T>['bindings']>;
} & ReturnType<__sveltets_Render<T>['exports']>;
<T extends NotificationItem>(internal: unknown, props: ReturnType<__sveltets_Render<T>['props']> & {}): ReturnType<__sveltets_Render<T>['exports']>;
z_$$bindings?: ReturnType<__sveltets_Render<any>['bindings']>;
}
declare const NotificationList: $$IsomorphicComponent;
type NotificationList<T extends NotificationItem> = InstanceType<typeof NotificationList<T>>;
export default NotificationList;