mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
|
/**
|
||
|
* The distribution this build is intended for.
|
||
|
*
|
||
|
* This should be kept in-sync with the `BuildType` map in `shared/constants/app.js`.
|
||
|
*/
|
||
|
const BuildType = {
|
||
|
beta: 'beta',
|
||
|
flask: 'flask',
|
||
|
main: 'main',
|
||
|
};
|
||
|
|
||
|
module.exports = { BuildType };
|