UNPKG
background-removal-js
Version:
latest (5.0.1)
5.0.1
3.0.1
2.3.8
background-removal-js
github.com/imgly
imgly/background-removal-js
background-removal-js
/
dist
/
index.d.ts
10 lines
(7 loc)
•
209 B
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 };