UNPKG
hello-vga-function
Version:
latest (0.0.2)
0.0.2
0.0.1
This is hello-vga-function package
google.com
hello-vga-function
/
dist
/
index.d.ts
8 lines
(6 loc)
•
178 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
interface
IUser
{
username
:
string
;
age
?:
number
; }
declare
function
sayHelloFromVGA
(
{ username, age }:
IUser
):
void
;
export
{
type
IUser
, sayHelloFromVGA
as
default
};