mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
68 lines
2.3 KiB
TypeScript
68 lines
2.3 KiB
TypeScript
// Type definitions for Google Apps Script 2019-08-09
|
|
// Project: https://developers.google.com/apps-script/
|
|
// Definitions by: motemen <https://github.com/motemen/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="google-apps-script.types.d.ts" />
|
|
/// <reference path="google-apps-script.base.d.ts" />
|
|
|
|
declare namespace GoogleAppsScript {
|
|
export module Groups {
|
|
/**
|
|
* A group object whose members and those members' roles within the group can be queried.
|
|
*
|
|
* Here's an example which shows the members of a group. Before running it, replace the email
|
|
* address of the group with that of one on your domain.
|
|
*
|
|
* function listGroupMembers() {
|
|
* var group = GroupsApp.getGroupByEmail("example@googlegroups.com");
|
|
* var str = group.getEmail() + ': ';
|
|
* var users = group.getUsers();
|
|
* for (var i = 0; i < users.length; i++) {
|
|
* var user = users[i];
|
|
* str = str + user.getEmail() + ", ";
|
|
* }
|
|
* Logger.log(str);
|
|
* }
|
|
*/
|
|
export interface Group {
|
|
getEmail(): string;
|
|
getGroups(): Group[];
|
|
getRole(email: string): Role;
|
|
getRole(user: Base.User): Role;
|
|
getUsers(): Base.User[];
|
|
hasGroup(group: Group): boolean;
|
|
hasGroup(email: string): boolean;
|
|
hasUser(email: string): boolean;
|
|
hasUser(user: Base.User): boolean;
|
|
}
|
|
|
|
/**
|
|
* This class provides access to Google Groups information. It can be used to query information such
|
|
* as a group's email address, or the list of groups in which the user is a direct member.
|
|
*
|
|
* Here's an example that shows how many groups the current user is a member of:
|
|
*
|
|
* var groups = GroupsApp.getGroups();
|
|
* Logger.log('You belong to ' + groups.length + ' groups.');
|
|
*/
|
|
export interface GroupsApp {
|
|
Role: typeof Role;
|
|
getGroupByEmail(email: string): Group;
|
|
getGroups(): Group[];
|
|
}
|
|
|
|
/**
|
|
* Possible roles of a user within a group, such as owner or ordinary member. Users subscribed to a
|
|
* group have exactly one role within the context of that group.
|
|
* See also
|
|
*
|
|
* Group.getRole(email)
|
|
*/
|
|
export enum Role { OWNER, MANAGER, MEMBER, INVITED, PENDING }
|
|
|
|
}
|
|
}
|
|
|
|
declare var GroupsApp: GoogleAppsScript.Groups.GroupsApp;
|