mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
4aa5b52992
Co-authored-by: Rhys Arkins <rhys@arkins.net> Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
6 lines
157 B
TypeScript
6 lines
157 B
TypeScript
import type { IndentationType } from './indentation-type';
|
|
|
|
export interface CodeFormat {
|
|
indentationSize?: number;
|
|
indentationType?: IndentationType;
|
|
}
|