Files
skills-here-run-place/node_modules/astro/dist/cli/info/infra/styled-debug-info-formatter.d.ts
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

11 lines
381 B
TypeScript

import type { TextStyler } from '../../definitions.js';
import type { DebugInfoFormatter } from '../definitions.js';
import type { DebugInfo } from '../domain/debug-info.js';
export declare class StyledDebugInfoFormatter implements DebugInfoFormatter {
#private;
constructor({ textStyler, }: {
textStyler: TextStyler;
});
format(info: DebugInfo): string;
}