Major refactor
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
export type Maybe<T> = T | undefined;
|
||||
|
||||
export interface DateInput {
|
||||
from: Date;
|
||||
to: Date;
|
||||
}
|
||||
|
||||
export interface GeneralInput {
|
||||
dates: DateInput;
|
||||
limit: number;
|
||||
offset: number;
|
||||
}
|
||||
|
||||
export interface FilterInput {
|
||||
filter: GeneralInput;
|
||||
}
|
||||
Reference in New Issue
Block a user