UNPKG

415 BJavaScriptView Raw
1/** Copyright (c) 2018 Uber Technologies, Inc.
2 *
3 * This source code is licensed under the MIT license found in the
4 * LICENSE file in the root directory of this source tree.
5 *
6 * @flow
7 */
8
9import {createToken} from 'fusion-core';
10import type {Token} from 'fusion-core';
11
12import type {I18nLoaderType} from './loader.js';
13
14export const I18nLoaderToken: Token<I18nLoaderType> = createToken(
15 'I18nLoaderToken'
16);