ilojo-bar-components
Version:
Ilojo Bar Component Library
17 lines (16 loc) • 512 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
companyName: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type BigFooterProps = typeof __propDef.props;
export declare type BigFooterEvents = typeof __propDef.events;
export declare type BigFooterSlots = typeof __propDef.slots;
export default class BigFooter extends SvelteComponentTyped<BigFooterProps, BigFooterEvents, BigFooterSlots> {
}
export {};