InternalFormatter.d.ts 201 B

123456
  1. import { Formatter } from './Formatter';
  2. /**
  3. * TODO: maybe we should not treat internal errors as issues
  4. */
  5. declare function createInternalFormatter(): Formatter;
  6. export { createInternalFormatter };