@dcodegroup-au/dsg-vue
Version:
Front-end Vue/Tailwind DSG for UntitledUI.
35 lines (34 loc) • 1.25 kB
TypeScript
/**
* ------------------------------------------------
* # Setup: Props/Variables
* ------------------------------------------------
*/
export interface DsgTablePaginationInfoProps {
infoTemplate?: string;
noDataTemplate?: string;
}
export interface DsgTablePaginationInfoLink {
url: string;
label: string;
active: boolean;
}
export interface DsgTablePaginationInfo {
total: number;
from: number;
to: number;
current_page?: number;
last_page?: number;
links: DsgTablePaginationInfoLink[];
path?: string;
per_page?: number;
}
type __VLS_Props = DsgTablePaginationInfoProps;
type __VLS_PublicProps = {
"pagination"?: DsgTablePaginationInfo | null;
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:pagination": (value: DsgTablePaginationInfo | null) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:pagination"?: ((value: DsgTablePaginationInfo | null) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;