From 291803c31f829fe0d32bb3207bc11def95a7408c Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 20:05:50 +0100 Subject: Urađena test aplikacija. Povezan front i back. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../@angular/cli/models/analytics.d.ts | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 sandbox/testAppNevena/Front/node_modules/@angular/cli/models/analytics.d.ts (limited to 'sandbox/testAppNevena/Front/node_modules/@angular/cli/models/analytics.d.ts') diff --git a/sandbox/testAppNevena/Front/node_modules/@angular/cli/models/analytics.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular/cli/models/analytics.d.ts new file mode 100644 index 00000000..1a16fdab --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/@angular/cli/models/analytics.d.ts @@ -0,0 +1,58 @@ +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +import { AnalyticsCollector } from './analytics-collector'; +export declare const AnalyticsProperties: { + AngularCliProd: string; + AngularCliStaging: string; + readonly AngularCliDefault: string; +}; +/** + * This is the ultimate safelist for checking if a package name is safe to report to analytics. + */ +export declare const analyticsPackageSafelist: (string | RegExp)[]; +export declare function isPackageNameSafeForAnalytics(name: string): boolean; +/** + * Set analytics settings. This does not work if the user is not inside a project. + * @param level Which config to use. "global" for user-level, and "local" for project-level. + * @param value Either a user ID, true to generate a new User ID, or false to disable analytics. + */ +export declare function setAnalyticsConfig(level: 'global' | 'local', value: string | boolean): void; +/** + * Prompt the user for usage gathering permission. + * @param force Whether to ask regardless of whether or not the user is using an interactive shell. + * @return Whether or not the user was shown a prompt. + */ +export declare function promptGlobalAnalytics(force?: boolean): Promise; +/** + * Prompt the user for usage gathering permission for the local project. Fails if there is no + * local workspace. + * @param force Whether to ask regardless of whether or not the user is using an interactive shell. + * @return Whether or not the user was shown a prompt. + */ +export declare function promptProjectAnalytics(force?: boolean): Promise; +export declare function hasGlobalAnalyticsConfiguration(): Promise; +/** + * Get the global analytics object for the user. This returns an instance of UniversalAnalytics, + * or undefined if analytics are disabled. + * + * If any problem happens, it is considered the user has been opting out of analytics. + */ +export declare function getGlobalAnalytics(): Promise; +export declare function hasWorkspaceAnalyticsConfiguration(): Promise; +/** + * Get the workspace analytics object for the user. This returns an instance of AnalyticsCollector, + * or undefined if analytics are disabled. + * + * If any problem happens, it is considered the user has been opting out of analytics. + */ +export declare function getWorkspaceAnalytics(): Promise; +/** + * Return the usage analytics sharing setting, which is either a property string (GA-XXXXXXX-XX), + * or undefined if no sharing. + */ +export declare function getSharedAnalytics(): Promise; -- cgit v1.2.3