Files
recap/node_modules/@start9labs/start-sdk/base/lib/osBindings/LogResponse.d.ts
T

7 lines
167 B
TypeScript

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