UNPKG
front-end-performance-checklist
Version:
latest (3.9.5)
3.9.5
2.9.8
2.3.8
front-end-performance-checklist
github.com/thedaviddias
thedaviddias/front-end-performance-checklist
front-end-performance-checklist
/
dist
/
index.d.mts
10 lines
(7 loc)
•
209 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
type
SayHelloProps
= {
firstName
:
String
;
lastName
:
String
;
age
:
Number
; };
declare
function
sayHello
(
{ firstName, lastName, age }:
SayHelloProps
):
void
;
export
{
type
SayHelloProps
, sayHello };