UNPKG
dkb-webgamedevutils
Version:
latest (0.0.1)
0.0.1
Utility functions for web game development with ThreeJS and PixiJS.
github.com/dkbozkurt
dkb-webgamedevutils
/
dist
/
index.d.mts
10 lines
(7 loc)
•
211 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 };