(input: {
projectId: string;
startDate: string;
endDate: string;
limit?: number;
})
| 103 | } |
| 104 | |
| 105 | export async function gscGetTopPagesCore(input: { |
| 106 | projectId: string; |
| 107 | startDate: string; |
| 108 | endDate: string; |
| 109 | limit?: number; |
| 110 | }) { |
| 111 | return getGscPages( |
| 112 | input.projectId, |
| 113 | input.startDate, |
| 114 | input.endDate, |
| 115 | input.limit ?? 100, |
| 116 | ); |
| 117 | } |
| 118 | |
| 119 | export async function gscGetPageDetailsCore(input: { |
| 120 | projectId: string; |
no test coverage detected