9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
|
|
export type TableListProps = {
|
|
id?: number;
|
|
name?: string;
|
|
date?: string;
|
|
amount?: string;
|
|
payment_term?: string;
|
|
status?: boolean;
|
|
}[]; |