svelte-copyright
Version:
A Svelte component to format and display a copyright notice.
24 lines (23 loc) • 705 B
TypeScript
import { SvelteComponent } from "svelte";
import type { Format, Position } from './types.js';
declare const __propDef: {
props: {
[x: string]: any;
date?: Date | undefined;
format?: Format | undefined;
position?: Position | undefined;
showRange?: boolean | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type CopyrightProps = typeof __propDef.props;
export type CopyrightEvents = typeof __propDef.events;
export type CopyrightSlots = typeof __propDef.slots;
export default class Copyright extends SvelteComponent<CopyrightProps, CopyrightEvents, CopyrightSlots> {
}
export {};