# inkey-client-js

TODO - add docs


```ts
// how to manually extend .emit
this.emit<InkeyPostMsgBase<'123', { hello: 'world' }>>({
	type: '123',
	// payload: 'testing', // doesnt work
	payload: {
		hello: 'world',
		// hello: 'worldly' // doesnt work
	}
});
```