UNPKG
@gzdv/bun-kvstore
Version:
latest (1.0.1)
1.0.1
1.0.0
Bun simple KV using SQLite
github.com/guzzdev/bun-kvstore
guzzdev/bun-kvstore
@gzdv/bun-kvstore
/
types
/
bun.d.ts
11 lines
(10 loc)
•
230 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
global
{
namespace
Bun
{
// Define the type of your new property
interface
MyNamespace
{
blabla
:
() =>
void
;
// Example function
} } }
// Export an empty object to make this file a module
export
{};