From 86e52b93790290a495296db52de89db4b712f5d1 Mon Sep 17 00:00:00 2001 From: Bruno Gasparetto Date: Sun, 11 Jul 2021 15:26:36 -0400 Subject: [PATCH] =?UTF-8?q?Adi=C3=A7=C3=A3o=20de=20exemplos=20ao=20SimpleD?= =?UTF-8?q?ateFormat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fluig.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/fluig.d.ts b/fluig.d.ts index be3a5f6..e34bdb6 100644 --- a/fluig.d.ts +++ b/fluig.d.ts @@ -5230,6 +5230,13 @@ declare namespace java.text { /** * Cria um novo formatador de datas com o padrĂ£o indicado * + * Exemplos: + * + * - "dd/MM/yyyy" -> data no formato pt-BR + * - "yyyy-MM-dd" -> data no formato ISO + * - "HH:mm" -> Hora (24h) e minuto + * - "yyyy-MM-dd'T'HH:mm:ss.SSSZ" -> Data completa (Ex: 2021-07-04T12:08:56.235-0700) + * * @tutorial https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html */ constructor(formato: string);