From 2fdce22698affb85e7728f7a513210c7110400aa Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sun, 30 Jul 2017 13:15:16 +0200 Subject: [PATCH] Indent. --- src/operations/operation.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/operations/operation.ts b/src/operations/operation.ts index f122da5..5d176c0 100644 --- a/src/operations/operation.ts +++ b/src/operations/operation.ts @@ -1,15 +1,15 @@ // vim: set tw=80 ts=2 sw=2 sts=2: export class Operation { - id: number; - operation_date: string; - label: string; - value: number; - category: string; - scheduled_operation_id: number; - account_id: number; - balance: number; - confirmed: boolean; - pointed: boolean; - cancelled: boolean + id: number; + operation_date: string; + label: string; + value: number; + category: string; + scheduled_operation_id: number; + account_id: number; + balance: number; + confirmed: boolean; + pointed: boolean; + cancelled: boolean }