UNPKG

emoji-net

Version:

EmojiNet is an image to emoji recognizer based on MobileNet / Google Emoji Scavenger Hunt

31 lines 1.23 kB
/** * @license * Copyright 2018 Google LLC * * Licensed under the Apache License, Version 2.0 (the 'License'); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an 'AS IS' BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============================================================================= */ import { EmojiName } from './emoji-classes'; export interface EmojiItem { emoji: string; name: EmojiName; svg: string; } declare const EMOJIS_LVL_1: EmojiItem[]; declare const EMOJIS_LVL_2: Array<EmojiItem>; declare const EMOJIS_LVL_3: Array<EmojiItem>; declare const EMOJIS_LVL_4: Array<EmojiItem>; declare const EMOJIS_LVL_5: Array<EmojiItem>; declare const EMOJIS_LVL_DEMO: Array<EmojiItem>; export { EMOJIS_LVL_1, EMOJIS_LVL_2, EMOJIS_LVL_3, EMOJIS_LVL_4, EMOJIS_LVL_5, EMOJIS_LVL_DEMO, }; //# sourceMappingURL=levels.d.ts.map