UNPKG
pyseoa-ts
Version:
latest (0.2.0)
0.2.0
0.1.3
0.1.2
0.1.1
0.1.0
SEO analysis tools for the web, ported from pyseoa (Python) to TypeScript
pyseoa-ts
/
dist
/
runners
/
runSeoAudit.d.ts
5 lines
(4 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
import
{
RunSeoAuditOptions
}
from
"../types"
;
import
{
AuditSummary
}
from
"../types"
;
import
{
AuditProgress
}
from
"../types"
;
export
declare
function
runSeoAudit
(
url
:
string
,
options
?:
RunSeoAuditOptions
,
onProgress
?: (info: AuditProgress) =>
void
):
Promise
<
AuditSummary
>;