mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* update declarations to latest 2.3.6 version. keep 2.3.1 versions files * rename 2.3.1 tests file to use propper naming convention
176 lines
4.9 KiB
TypeScript
176 lines
4.9 KiB
TypeScript
// Type definitions for angular-permission 2.3.6
|
|
// Project: https://github.com/Narzerus/angular-permission
|
|
// Definitions by: Voislav Mishevski <https://github.com/vmishevski>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../angularjs/angular.d.ts" />
|
|
/// <reference path="../angular-ui-router/angular-ui-router.d.ts" />
|
|
|
|
declare namespace angular.permission {
|
|
/**
|
|
* Used as optional parameter provided on definitions of permissions and roles
|
|
*/
|
|
export interface TransitionProperties {
|
|
fromState?: angular.ui.IState;
|
|
fromParams?: angular.ui.IStateParamsService;
|
|
toState?: angular.ui.IState;
|
|
toParams?: angular.ui.IStateParamsService;
|
|
options?: angular.ui.IStateOptions;
|
|
}
|
|
|
|
export interface PermissionStore {
|
|
/**
|
|
* Allows to define permission on application configuration
|
|
* @method
|
|
*
|
|
* @param permissionName {String} Name of defined permission
|
|
* @param validationFunction {Function} Function used to validate if permission is valid
|
|
*/
|
|
definePermission(
|
|
name: string,
|
|
validationFunction: (permission?: string, transitionProperties?: TransitionProperties) => boolean | angular.IPromise<any>
|
|
): void;
|
|
|
|
/**
|
|
* Allows to define set of permissionNames with shared validation function on application configuration
|
|
* @method
|
|
* @throws {TypeError}
|
|
*
|
|
* @param permissionNames {Array} Set of permission names
|
|
* @param validationFunction {Function} Function used to validate if permission is valid
|
|
*/
|
|
defineManyPermissions(
|
|
permissions: string[],
|
|
validationFunction: (permission?: string, transitionProperties?: TransitionProperties) => boolean | angular.IPromise<any>
|
|
): void;
|
|
|
|
clearStore(): void;
|
|
|
|
/**
|
|
* Deletes permission
|
|
* @method
|
|
*
|
|
* @param permissionName {String} Name of defined permission
|
|
*/
|
|
removePermissionDefinition(permission: string): void;
|
|
|
|
/**
|
|
* Checks if permission exists
|
|
* @method
|
|
*
|
|
* @param permissionName {String} Name of defined permission
|
|
* @returns {Boolean}
|
|
*/
|
|
hasPermissionDefinition(permissionName: string): boolean;
|
|
|
|
/**
|
|
* Returns all permissions
|
|
* @method
|
|
*
|
|
* @returns {Object} Permissions collection
|
|
*/
|
|
getStore(): Permission[];
|
|
}
|
|
|
|
export interface RoleStore {
|
|
/**
|
|
* Allows to define role
|
|
* @method
|
|
*
|
|
* @param roleName {String} Name of defined role
|
|
* @param permissions {Array} Set of permission names
|
|
* @param [validationFunction] {Function} Function used to validate if permissions in role are valid
|
|
*/
|
|
defineRole(
|
|
role: string,
|
|
permissions: Array<string>,
|
|
validationFunction: RoleValidationFunction
|
|
): void;
|
|
|
|
/**
|
|
* Allows to define role
|
|
* @method
|
|
*
|
|
* @param roleName {String} Name of defined role
|
|
* @param permissions {Array} Set of permission names
|
|
*/
|
|
defineRole(role: string, permissions: Array<string>): void;
|
|
|
|
/**
|
|
* Checks if role is defined in store
|
|
* @method
|
|
*
|
|
* @param roleName {String} Name of role
|
|
* @returns {Boolean}
|
|
*/
|
|
hasRoleDefinition(role: string): boolean;
|
|
|
|
/**
|
|
* Returns role definition object by it's name
|
|
* @method
|
|
*
|
|
* @returns {permission.Role} Role definition object
|
|
*/
|
|
getRoleDefinition(roleName: string): Role;
|
|
|
|
/**
|
|
* Removes all role definitions
|
|
* @method
|
|
*/
|
|
clearStore(): void;
|
|
|
|
/**
|
|
* Deletes role from store
|
|
* @method
|
|
*
|
|
* @param roleName {String} Name of defined permission
|
|
*/
|
|
removeRoleDefinition(roleName: string): void;
|
|
|
|
/**
|
|
* Returns all role definitions
|
|
* @method
|
|
*
|
|
* @returns {Object} Defined roles collection
|
|
*/
|
|
getStore(): Role[];
|
|
}
|
|
|
|
export interface Role {
|
|
roleName: string;
|
|
permissionNames: string[];
|
|
validationFunction?: RoleValidationFunction;
|
|
}
|
|
|
|
export interface Permission {
|
|
permissionName: string;
|
|
validationFunction?: PermissionValidationFunction;
|
|
}
|
|
|
|
interface RoleValidationFunction {
|
|
(permission?: string, transitionProperties?: TransitionProperties): boolean | angular.IPromise<any>;
|
|
}
|
|
|
|
interface PermissionValidationFunction {
|
|
(permission?: string, transitionProperties?: TransitionProperties): boolean | angular.IPromise<any>;
|
|
}
|
|
|
|
export interface IPermissionState extends angular.ui.IState {
|
|
data?: any | DataWithPermissions;
|
|
}
|
|
|
|
export interface DataWithPermissions {
|
|
permissions?: {
|
|
only?: (() => void) | Array<string> | angular.IPromise<any>;
|
|
except?: (() => void) | Array<string> | angular.IPromise<any>;
|
|
redirectTo: string | (() => string) | (() => PermissionRedirectConfigation) | {[index: string]: PermissionRedirectConfigation}
|
|
};
|
|
}
|
|
|
|
export interface PermissionRedirectConfigation {
|
|
state: string;
|
|
params?: {};
|
|
options?: angular.ui.IStateOptions;
|
|
}
|
|
}
|