14 lines
204 B
TypeScript
14 lines
204 B
TypeScript
|
|
export interface UniqueItem{
|
|
id: number;
|
|
}
|
|
|
|
export interface PageControl<T>{
|
|
items: T[] | null;
|
|
hasNext: boolean;
|
|
hasPrevious: boolean;
|
|
nextPage(): void;
|
|
previousPage(): void;
|
|
}
|
|
|