@kui-shell/plugin-client-common
Version:
Kui plugin that offers stylesheets
17 lines (16 loc) • 451 B
TypeScript
import type { RadioTable, REPL } from '@kui-shell/core';
interface Props {
/** The model to be rendered */
table: RadioTable;
/**
* paginate: true -> always paginate
* paginate: false -> never paginate
* paginate: number -> paginate if above the threshold of rows
*/
paginate?: boolean | number;
/** display table title? */
title: boolean;
/** REPL Controller */
repl: REPL;
}
export default Props;