File size: 350 Bytes
852c42d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
export interface ParamViewerProps {
value: Record<
string,
{
type: string;
description: string;
default: string;
}
>;
linkify: string[];
header: string | null;
anchor_links: boolean | string;
max_height: number | string | undefined;
}
export interface ParamViewerEvents {
change: never;
upload: never;
clear_status: never;
}
|