frontend/.pnpm-store/v3/files/92/a6a0ca522d278bce3e86f545be79e6e7bc9a87f87de87a50ad8ca125817487bf784c15de82c61e9b2ed00dee4d9c368e3f43c865b0ff3f576817bb1cd404c8

18 lines
563 B
Plaintext

import { SvelteComponentTyped } from "svelte";
import type { DataHandler } from './core';
declare const __propDef: {
props: {
handler: DataHandler;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type RowsPerPageProps = typeof __propDef.props;
export type RowsPerPageEvents = typeof __propDef.events;
export type RowsPerPageSlots = typeof __propDef.slots;
export default class RowsPerPage extends SvelteComponentTyped<RowsPerPageProps, RowsPerPageEvents, RowsPerPageSlots> {
}
export {};