animate/webGl/my-threejs-test/node_modules/nullthrows/nullthrows.d.ts

6 lines
153 B
TypeScript
Raw Normal View History

2024-06-24 09:24:00 +00:00
/**
* Throws if value is null or undefined, otherwise returns value.
*/
export default function nullthrows<T>(value?: T | null, message?: string): T;