UNPKG
ogp-parser
Version:
beta (0.6.0-rc.0)
latest (0.8.1)
0.8.1
0.8.0
0.7.1
0.6.0
0.6.0-rc.0
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.1
0.4.0
0.3.1
0.3.0
0.2.1
0.0.1
This Package is Open Graph Parser.
github.com/ukyoda/ogpParser
ukyoda/ogpParser
ogp-parser
/
dist
/
core
/
parseHtml.d.ts
11 lines
(10 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
type
ParseResult
= {
title
:
string
;
ogp
:
Record
<
string
,
string
[]>;
seo
:
Record
<
string
,
string
[]>;
oembedInfo
?: {
type
:
'json'
|
'xml'
;
url
:
string
; }; };
export
declare
const
parseHtml
:
(
html
:
string
) =>
ParseResult
;