7 lines
107 B
TypeScript
7 lines
107 B
TypeScript
|
export interface LineCount {
|
||
|
id: string;
|
||
|
lineCount: number;
|
||
|
locationId: string;
|
||
|
createdAt: Date;
|
||
|
}
|