UNPKG
next-social-icons
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A Next.js-compatible social icons library based on `react-social-icons`.
next-social-icons
/
dist
/
pages
/
api
/
hello.d.ts
7 lines
(6 loc)
•
193 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
NextApiRequest
,
NextApiResponse
}
from
"next"
;
type
Data
= {
name
:
string
; };
export
default
function
handler
(
_
:
NextApiRequest
,
res
:
NextApiResponse
<
Data
>
):
void
;
export
{};