(options?: {
label?: string | undefined
collapsed?: boolean | undefined
})
| 77 | |
| 78 | /** @internal */ |
| 79 | export const group = (options?: { |
| 80 | label?: string | undefined |
| 81 | collapsed?: boolean | undefined |
| 82 | }) => |
| 83 | consoleWith((_) => |
| 84 | fiberRuntime.acquireRelease( |
| 85 | _.group(options), |
| 86 | () => _.groupEnd |
| 87 | ) |
| 88 | ) |
| 89 | |
| 90 | /** @internal */ |
| 91 | export const info = (...args: ReadonlyArray<any>) => consoleWith((_) => _.info(...args)) |
nothing calls this directly
no test coverage detected