mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-12 15:32:34 +00:00
11 lines
219 B
TypeScript
11 lines
219 B
TypeScript
/**
|
|
* Shows a dialog prompting users to upgrade, if requested feature is disabled.
|
|
*
|
|
* @returns {Function}
|
|
*/
|
|
export function maybeShowPremiumFeatureDialog() {
|
|
return function() {
|
|
return false;
|
|
};
|
|
}
|