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.NB
|
|
|
|
( 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 Duration
|
|
|
|
, Seal Numeral
|
|
|
|
, Seal Ordinal
|
|
|
|
, Seal Time
|
2017-03-08 21:33:55 +03:00
|
|
|
]
|