(indent: number)
| 52 | (data: T) => JSON.stringify(data, null, indent) |
| 53 | |
| 54 | export const yamlFormatter = <T extends object>(indent: number): OutputFormatter<T> => |
| 55 | (data: T) => yaml.dump(data, { indent }) |
| 56 | |
| 57 | export const itemTableFormatter = |
| 58 | <T extends object>(tableGenerator: TableGenerator, fieldDefinitions: TableFieldDefinition<T>[]): OutputFormatter<T> => |
no outgoing calls
no test coverage detected