11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
'use strict';
|
|
|
|
import Common from '../src/common.js';
|
|
|
|
/**
|
|
* Show all possible parameters for manifest URLs
|
|
*/
|
|
export default async function exposeParams() {
|
|
return await Common.getParamsFromFolders();
|
|
}
|