6 lines
121 B
TypeScript
6 lines
121 B
TypeScript
import type { Guid } from './Guid';
|
|
export type LogFollowResponse = {
|
|
startCursor: string | null;
|
|
guid: Guid;
|
|
};
|