Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

chore(deps): update dependency gts to ^0.9.0 #224

Merged
merged 1 commit into from
Dec 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
725 changes: 357 additions & 368 deletions packages/opencensus-core/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/opencensus-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@types/semver": "^5.5.0",
"@types/shimmer": "^1.0.1",
"@types/uuid": "^3.4.3",
"gts": "^0.5.4",
"gts": "^0.9.0",
"intercept-stdout": "^0.1.2",
"mocha": "^5.0.4",
"ncp": "^2.0.0",
Expand Down
4 changes: 3 additions & 1 deletion packages/opencensus-core/src/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,6 @@ export interface Logger {
}

/** Defines an logger options interface. */
export interface LoggerOptions { level?: string; }
export interface LoggerOptions {
level?: string;
}
4 changes: 3 additions & 1 deletion packages/opencensus-core/src/resource/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ export interface Resource {
}

/** Labels are maps of keys -> values */
export interface Labels { [key: string]: string; }
export interface Labels {
[key: string]: string;
}
4 changes: 3 additions & 1 deletion packages/opencensus-core/src/stats/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
import {Metric} from '../metrics/export/types';

/** Tags are maps of names -> values */
export interface Tags { [key: string]: string; }
export interface Tags {
[key: string]: string;
}

/**
* Describes the type of the individual values/measurements recorded by an
Expand Down
4 changes: 3 additions & 1 deletion packages/opencensus-core/src/trace/model/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ import * as samplerTypes from '../sampler/types';
export type Func<T> = (...args: any[]) => T;

/** Maps a label to a string, number or boolean. */
export interface Attributes { [attributeKey: string]: string|number|boolean; }
export interface Attributes {
[attributeKey: string]: string|number|boolean;
}

/** A text annotation with a set of attributes. */
export interface Annotation {
Expand Down
4 changes: 3 additions & 1 deletion packages/opencensus-core/src/trace/propagation/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ export interface HeaderGetter {
/**
* A transport and environment neutral API for setting headers.
*/
export interface HeaderSetter { setHeader(name: string, value: string): void; }
export interface HeaderSetter {
setHeader(name: string, value: string): void;
}

/**
* Propagation interface
Expand Down
Loading