(workspaceId: string)
| 253 | * @returns Maximum rows per table (-1 for unlimited) |
| 254 | */ |
| 255 | export async function getMaxRowsPerTable(workspaceId: string): Promise<number> { |
| 256 | const limits = await getWorkspaceTableLimits(workspaceId) |
| 257 | return limits.maxRowsPerTable |
| 258 | } |
no test coverage detected