2017-03-08 21:33:55 +03:00
|
|
|
-- Copyright (c) 2016-present, Facebook, Inc.
|
|
|
|
-- All rights reserved.
|
|
|
|
--
|
|
|
|
-- This source code is licensed under the BSD-style license found in the
|
2019-05-22 20:36:43 +03:00
|
|
|
-- LICENSE file in the root directory of this source tree.
|
2017-03-08 21:33:55 +03:00
|
|
|
|
|
|
|
|
|
|
|
module Duckling.Dimensions.Common
|
|
|
|
( allDimensions
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Duckling.Dimensions.Types
|
|
|
|
|
2020-09-28 11:31:58 +03:00
|
|
|
allDimensions :: [Seal Dimension]
|
2017-03-08 21:33:55 +03:00
|
|
|
allDimensions =
|
2020-09-28 11:31:58 +03:00
|
|
|
[ Seal AmountOfMoney
|
2021-01-06 00:17:15 +03:00
|
|
|
, Seal CreditCardNumber
|
2020-09-28 11:31:58 +03:00
|
|
|
, Seal Email
|
|
|
|
, Seal Numeral
|
|
|
|
, Seal PhoneNumber
|
|
|
|
, Seal Url
|
2017-03-08 21:33:55 +03:00
|
|
|
]
|