forked from vergnet/site-accueil-insa
17 lines
325 B
TypeScript
17 lines
325 B
TypeScript
/*!
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
interface Capability {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
helpUrl: string;
|
|
includedInRoles: string[];
|
|
category: string;
|
|
}
|
|
|
|
export default Capability;
|