|
| 1 | +## API Report File for "@datadog/js-core" |
| 2 | + |
| 3 | +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). |
| 4 | +
|
| 5 | +```ts |
| 6 | + |
| 7 | +// @public |
| 8 | +export function combine<A, B>(a: A, b: B): Combined<A, B>; |
| 9 | + |
| 10 | +// @public (undocumented) |
| 11 | +export function combine<A, B, C>(a: A, b: B, c: C): Combined<Combined<A, B>, C>; |
| 12 | + |
| 13 | +// @public (undocumented) |
| 14 | +export function combine<A, B, C, D>(a: A, b: B, c: C, d: D): Combined<Combined<Combined<A, B>, C>, D>; |
| 15 | + |
| 16 | +// @public (undocumented) |
| 17 | +export function combine<A, B, C, D, E>(a: A, b: B, c: C, d: D, e: E): Combined<Combined<Combined<Combined<A, B>, C>, D>, E>; |
| 18 | + |
| 19 | +// @public (undocumented) |
| 20 | +export function combine<A, B, C, D, E, F>(a: A, b: B, c: C, d: D, e: E, f: F): Combined<Combined<Combined<Combined<Combined<A, B>, C>, D>, E>, F>; |
| 21 | + |
| 22 | +// @public (undocumented) |
| 23 | +export function combine<A, B, C, D, E, F, G>(a: A, b: B, c: C, d: D, e: E, f: F, g: G): Combined<Combined<Combined<Combined<Combined<Combined<A, B>, C>, D>, E>, F>, G>; |
| 24 | + |
| 25 | +// @public (undocumented) |
| 26 | +export function combine<A, B, C, D, E, F, G, H>(a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H): Combined<Combined<Combined<Combined<Combined<Combined<Combined<A, B>, C>, D>, E>, F>, G>, H>; |
| 27 | + |
| 28 | +// @public |
| 29 | +export const ConsoleApiName: { |
| 30 | + readonly log: "log"; |
| 31 | + readonly debug: "debug"; |
| 32 | + readonly info: "info"; |
| 33 | + readonly warn: "warn"; |
| 34 | + readonly error: "error"; |
| 35 | +}; |
| 36 | + |
| 37 | +// @public |
| 38 | +export type ConsoleApiName = (typeof ConsoleApiName)[keyof typeof ConsoleApiName]; |
| 39 | + |
| 40 | +// @public |
| 41 | +export function createDisplay(prefix: string): Display; |
| 42 | + |
| 43 | +// @public |
| 44 | +export function deepClone<T>(value: T): T; |
| 45 | + |
| 46 | +// @public |
| 47 | +export interface Display { |
| 48 | + // (undocumented) |
| 49 | + debug: typeof console.debug; |
| 50 | + // (undocumented) |
| 51 | + error: typeof console.error; |
| 52 | + // (undocumented) |
| 53 | + info: typeof console.info; |
| 54 | + // (undocumented) |
| 55 | + log: typeof console.log; |
| 56 | + // (undocumented) |
| 57 | + warn: typeof console.warn; |
| 58 | +} |
| 59 | + |
| 60 | +// @public |
| 61 | +export function getDebugMode(): boolean; |
| 62 | + |
| 63 | +// @public |
| 64 | +export function getType(value: unknown): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | "null" | "array"; |
| 65 | + |
| 66 | +// @public |
| 67 | +export const globalConsole: Console; |
| 68 | + |
| 69 | +// @public |
| 70 | +export function isIndexableObject(value: unknown): value is Record<any, unknown>; |
| 71 | + |
| 72 | +// @public |
| 73 | +export function mergeInto<D, S>(destination: D, source: S): Merged<D, S>; |
| 74 | + |
| 75 | +// @public |
| 76 | +export const originalConsoleMethods: Display; |
| 77 | + |
| 78 | +// @public |
| 79 | +export type RecursivePartial<T> = { |
| 80 | + [P in keyof T]?: T[P] extends Array<infer U> ? Array<RecursivePartial<U>> : T[P] extends object | undefined ? RecursivePartial<T[P]> : T[P]; |
| 81 | +}; |
| 82 | + |
| 83 | +// @public |
| 84 | +export function setDebugMode(newDebugMode: boolean): void; |
| 85 | + |
| 86 | +// (No @packageDocumentation comment for this package) |
| 87 | + |
| 88 | +``` |
0 commit comments