mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 15:05:25 +00:00
larry babby and threejs for glsl
This commit is contained in:
28
webGl/my-threejs-test/node_modules/@parcel/profiler/lib/Tracer.d.ts
generated
vendored
Normal file
28
webGl/my-threejs-test/node_modules/@parcel/profiler/lib/Tracer.d.ts
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import type { TraceEvent, IDisposable, PluginTracer as IPluginTracer } from "@parcel/types";
|
||||
import type { TraceMeasurement as ITraceMeasurement } from "./types";
|
||||
export default class Tracer {
|
||||
|
||||
onTrace(cb: (event: TraceEvent) => unknown): IDisposable;
|
||||
wrap(name: string, fn: () => unknown): Promise<void>;
|
||||
createMeasurement(name: string, category?: string, argumentName?: string, otherArgs?: Record<string, unknown>): ITraceMeasurement | null;
|
||||
get enabled(): boolean;
|
||||
enable(): void;
|
||||
disable(): void;
|
||||
trace(event: TraceEvent): void;
|
||||
}
|
||||
export declare const tracer: Tracer;
|
||||
type TracerOpts = {
|
||||
origin: string;
|
||||
category: string;
|
||||
};
|
||||
export declare class PluginTracer implements IPluginTracer {
|
||||
/** @private */
|
||||
origin: string;
|
||||
/** @private */
|
||||
category: string;
|
||||
/** @private */
|
||||
constructor(opts: TracerOpts);
|
||||
get enabled(): boolean;
|
||||
createMeasurement(name: string, category?: string, argumentName?: string, otherArgs?: Record<string, unknown>): ITraceMeasurement | null;
|
||||
}
|
||||
export {};
|
Reference in New Issue
Block a user