🚧 wip: create bulk insert endpoint

This commit is contained in:
Rafi Arrafif
2026-01-23 21:08:10 +07:00
parent 87ec339dba
commit 4c1f891f12
10 changed files with 440 additions and 83 deletions

15
snowflake.d.ts vendored Normal file
View File

@ -0,0 +1,15 @@
declare module "node-snowflake" {
interface SnowflakeOptions {
workerId?: number;
datacenterId?: number;
sequence?: number;
epoch?: number | bigint | Date;
}
class Snowflake {
constructor(options?: SnowflakeOptions);
generate(): bigint;
}
export { Snowflake };
}