UNPKG

svelte-shields

Version:

A collection of Shilds badge components for Svelte Runes

37 lines (36 loc) 1.17 kB
import type { LicensePropsType } from './types'; 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; z_$$bindings?: Bindings; } /** * [Go to docs](https://svelte-shields.codewithshin.com/) * ## Props * @prop source * @prop github_user * @prop github_repo * @prop npm_packageName * @prop npm_registry_uri * @prop style = 'flat' * @prop logo * @prop logoColor * @prop logoSize * @prop label * @prop labelColor * @prop color * @prop cacheSeconds * @prop link * @prop class: classname * @prop ...attributes */ declare const License: $$__sveltets_2_IsomorphicComponent<LicensePropsType, { [evt: string]: CustomEvent<any>; }, {}, {}, "">; type License = InstanceType<typeof License>; export default License;