Erster Docker-Stand
This commit is contained in:
25
_node_modules/effect/src/LogSpan.ts
generated
Normal file
25
_node_modules/effect/src/LogSpan.ts
generated
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
import * as internal from "./internal/logSpan.js"
|
||||
|
||||
/**
|
||||
* @since 2.0.0
|
||||
* @category models
|
||||
*/
|
||||
export interface LogSpan {
|
||||
readonly label: string
|
||||
readonly startTime: number
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 2.0.0
|
||||
* @category constructors
|
||||
*/
|
||||
export const make: (label: string, startTime: number) => LogSpan = internal.make
|
||||
|
||||
/**
|
||||
* @since 2.0.0
|
||||
* @category destructors
|
||||
*/
|
||||
export const render: (now: number) => (self: LogSpan) => string = internal.render
|
||||
Reference in New Issue
Block a user