mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
77 lines
3.4 KiB
TypeScript
77 lines
3.4 KiB
TypeScript
// Type definitions for Google Apps Script 2015-11-12
|
|
// 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 Utilities {
|
|
/**
|
|
* A typesafe enum for character sets.
|
|
*/
|
|
export enum Charset { US_ASCII, UTF_8 }
|
|
|
|
/**
|
|
* Selector of Digest algorithm
|
|
*/
|
|
export enum DigestAlgorithm { MD2, MD5, SHA_1, SHA_256, SHA_384, SHA_512 }
|
|
|
|
/**
|
|
* Selector of MAC algorithm
|
|
*/
|
|
export enum MacAlgorithm { HMAC_MD5, HMAC_SHA_1, HMAC_SHA_256, HMAC_SHA_384, HMAC_SHA_512 }
|
|
|
|
/**
|
|
* This service provides utilities for string encoding/decoding, date formatting, JSON manipulation,
|
|
* and other miscellaneous tasks.
|
|
*/
|
|
export interface Utilities {
|
|
Charset: Charset
|
|
DigestAlgorithm: DigestAlgorithm
|
|
MacAlgorithm: MacAlgorithm
|
|
base64Decode(encoded: string): Byte[];
|
|
base64Decode(encoded: string, charset: Charset): Byte[];
|
|
base64DecodeWebSafe(encoded: string): Byte[];
|
|
base64DecodeWebSafe(encoded: string, charset: Charset): Byte[];
|
|
base64Encode(data: Byte[]): string;
|
|
base64Encode(data: string): string;
|
|
base64Encode(data: string, charset: Charset): string;
|
|
base64EncodeWebSafe(data: Byte[]): string;
|
|
base64EncodeWebSafe(data: string): string;
|
|
base64EncodeWebSafe(data: string, charset: Charset): string;
|
|
computeDigest(algorithm: DigestAlgorithm, value: string): Byte[];
|
|
computeDigest(algorithm: DigestAlgorithm, value: string, charset: Charset): Byte[];
|
|
computeHmacSha256Signature(value: string, key: string): Byte[];
|
|
computeHmacSha256Signature(value: string, key: string, charset: Charset): Byte[];
|
|
computeHmacSignature(algorithm: MacAlgorithm, value: string, key: string): Byte[];
|
|
computeHmacSignature(algorithm: MacAlgorithm, value: string, key: string, charset: Charset): Byte[];
|
|
computeRsaSha256Signature(value: string, key: string): Byte[];
|
|
computeRsaSha256Signature(value: string, key: string, charset: Charset): Byte[];
|
|
formatDate(date: Date, timeZone: string, format: string): string;
|
|
formatString(template: string, ...args: Object[]): string;
|
|
newBlob(data: Byte[]): Base.Blob;
|
|
newBlob(data: Byte[], contentType: string): Base.Blob;
|
|
newBlob(data: Byte[], contentType: string, name: string): Base.Blob;
|
|
newBlob(data: string): Base.Blob;
|
|
newBlob(data: string, contentType: string): Base.Blob;
|
|
newBlob(data: string, contentType: string, name: string): Base.Blob;
|
|
parseCsv(csv: string): String[][];
|
|
parseCsv(csv: string, delimiter: Char): String[][];
|
|
sleep(milliseconds: Integer): void;
|
|
unzip(blob: Base.BlobSource): Base.Blob[];
|
|
zip(blobs: Base.BlobSource[]): Base.Blob;
|
|
zip(blobs: Base.BlobSource[], name: string): Base.Blob;
|
|
jsonParse(jsonString: string): Object;
|
|
jsonStringify(obj: Object): string;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
declare var Charset: GoogleAppsScript.Utilities.Charset;
|
|
declare var DigestAlgorithm: GoogleAppsScript.Utilities.DigestAlgorithm;
|
|
declare var MacAlgorithm: GoogleAppsScript.Utilities.MacAlgorithm;
|
|
declare var Utilities: GoogleAppsScript.Utilities.Utilities;
|