7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
import type { LogEntry } from './LogEntry';
|
|
export type LogResponse = {
|
|
entries: Array<LogEntry>;
|
|
startCursor: string | null;
|
|
endCursor: string | null;
|
|
};
|