export interface ITokenService { /** * Sets the value for a specific token * @internal this method is not intended to be used directly in your code. * @param token the token name * @param value the value to set */ setTokenValue(token: string, value: any): void; /** * Gets the value of a specific token * @param token the token name to retrieve */ getTokenValue(token: string): any; /** * Resolves tokens for the specified input string. * @param string */ resolveTokens(string: string): Promise; /** * Retrieves available current page properties * @internal this method is not intended to be used directly in your code. */ getPageProperties(): Promise; /** * Retrieve all current user profile properties * @internal this method is not intended to be used directly in your code. */ getUserProfileProperties(): Promise; } export interface IProfileProperties { [propertyName: string]: string; } //# sourceMappingURL=ITokenService.d.ts.map