8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
/**
|
|
* checkFeature()
|
|
* Check whether the permission of the feature is approved
|
|
* @param {string} feature [name of feature]
|
|
* @return {boolean}
|
|
*/
|
|
export default function checkFeature(feature: string): boolean;
|