(input: {
projectId: string;
startDate: string;
endDate: string;
limit?: number;
})
| 131 | } |
| 132 | |
| 133 | export async function gscGetTopQueriesCore(input: { |
| 134 | projectId: string; |
| 135 | startDate: string; |
| 136 | endDate: string; |
| 137 | limit?: number; |
| 138 | }) { |
| 139 | return getGscQueries( |
| 140 | input.projectId, |
| 141 | input.startDate, |
| 142 | input.endDate, |
| 143 | input.limit ?? 100, |
| 144 | ); |
| 145 | } |
| 146 | |
| 147 | export async function gscGetQueryOpportunitiesCore(input: { |
| 148 | projectId: string; |
no test coverage detected