24 lines
681 B
TypeScript
24 lines
681 B
TypeScript
/** @typedef {typeof __propDef.props} PageProps */
|
|
/** @typedef {typeof __propDef.events} PageEvents */
|
|
/** @typedef {typeof __propDef.slots} PageSlots */
|
|
// export default class Page extends SvelteComponentTyped<{
|
|
// [x: string]: never;
|
|
// }, {
|
|
// [evt: string]: CustomEvent<any>;
|
|
// }, {}> {
|
|
// }
|
|
export type PageProps = typeof __propDef.props;
|
|
export type PageEvents = typeof __propDef.events;
|
|
export type PageSlots = typeof __propDef.slots;
|
|
// import { SvelteComponentTyped } from "svelte";
|
|
// declare const __propDef: {
|
|
// props: {
|
|
// [x: string]: never;
|
|
// };
|
|
// events: {
|
|
// [evt: string]: CustomEvent<any>;
|
|
// };
|
|
// slots: {};
|
|
// };
|
|
export {};
|