@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
36 lines (35 loc) • 703 B
TypeScript
/**
* Built in Omnia security roles
* */
export declare class SecurityRoles {
static Api: {
new (): {};
FullControl: string;
};
static Tenant: {
new (): {};
Admin: string;
DirectoryReader: string;
SemanticSearchReader: string;
};
static SiteCollection: {
new (): {};
Admin: string;
};
static Site: {
new (): {};
Admin: string;
};
static BusinessProfile: {
new (): {};
Admin: string;
Viewer: string;
};
static AppInstance: {
new (): {};
Admin: string;
Contributor: string;
Reader: string;
Viewer: string;
};
}