9 lines
126 B
TypeScript
9 lines
126 B
TypeScript
|
|
interface DataRows {
|
||
|
|
leaveType: string
|
||
|
|
name: string
|
||
|
|
Date: string
|
||
|
|
status: string
|
||
|
|
}
|
||
|
|
export type {
|
||
|
|
DataRows
|
||
|
|
}
|