mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
24 lines
330 B
TypeScript
24 lines
330 B
TypeScript
interface IDate {
|
|
year: number;
|
|
month: number;
|
|
day: number;
|
|
}
|
|
|
|
interface ITimeOfDay {
|
|
hours: number;
|
|
minutes: number;
|
|
seconds: number;
|
|
nanos: number;
|
|
}
|
|
|
|
export interface ITimeInterval {
|
|
startDate: IDate;
|
|
startTime: ITimeOfDay;
|
|
endDate: IDate;
|
|
endTime: ITimeOfDay;
|
|
}
|
|
|
|
export interface IReviewReply {
|
|
comment: string;
|
|
}
|