7 lines
120 B
TypeScript
7 lines
120 B
TypeScript
export type LogsParams = {
|
|
limit?: number;
|
|
cursor?: string;
|
|
boot?: number | string;
|
|
before: boolean;
|
|
};
|