@microsearch/lightning
Version:
Lightning fast text search for Node.js - blazing fast markdown and text search engine ⚡
19 lines (18 loc) • 544 B
TypeScript
export declare const VERSION_INFO: {
version: string;
buildDate: string;
gitHash: string;
gitBranch: string;
releaseType: 'alpha' | 'beta' | 'rc' | 'stable';
};
export declare const getVersionInfo: () => {
version: string;
buildDate: string;
gitHash: string;
gitBranch: string;
releaseType: "alpha" | "beta" | "rc" | "stable";
};
export declare const getFullVersionString: () => string;
export declare const isPreRelease: () => boolean;
export declare const version: string;
export default VERSION_INFO;