tiny-essentials
Version:
Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.
13 lines • 631 B
text/typescript
export default presenceSystem;
export type FbDatabase = typeof import("firebase/database");
export type DataSnapshot = import("firebase/database").DataSnapshot;
export type DatabaseReference = import("firebase/database").DatabaseReference;
declare namespace presenceSystem {
function browserVersion(lodash?: string): string;
function start(database: object, myConnectionsRef: string | object, lastOnlineRef: string | object, data?: {
connected?: boolean | object | undefined;
removeError?: Function | undefined;
getDate?: Function | undefined;
}): void;
}
//# sourceMappingURL=presence.d.mts.map