UNPKG

dkb-webgamedevutils

Version:

Utility functions for web game development with ThreeJS and PixiJS.

10 lines (7 loc) 211 B
type SayHelloProps = { firstName: string; lastName?: string; age?: number; }; declare function sayHello({ firstName, lastName, age }: SayHelloProps): void; export { type SayHelloProps, sayHello };