UNPKG
@heyframe-ag/meteor-admin-sdk
Version:
latest (6.4.0)
6.4.0
6.3.0
6.2.1
The Meteor SDK for the HeyFrame Administration.
github.com/heyframe/meteor
heyframe/meteor
@heyframe-ag/meteor-admin-sdk
/
umd
/
context
/
compare-version.d.ts
4 lines
(3 loc)
•
235 B
TypeScript
View Raw
1
2
3
4
type
Comparator
=
'='
|
'!='
|
'<'
|
'>'
|
'<='
|
'>='
;
export
default
function
getCompareIsHeyFrameVersion
(
getHeyFrameVersion
: () =>
Promise
<
string
>
):
(
comparator
:
Comparator
,
versionToCompare
:
string
) =>
Promise
<
boolean
>;
export
{};