Export object interfaces for both libraries

master
Oystein Kristoffer Tveit 2020-06-30 11:58:20 +02:00
parent 94f0c59325
commit 59411b8463
4 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 1.1.0
- Export object interfaces for both libraries
## 1.0.2
- Fix example README

View File

@ -13,6 +13,8 @@ import './src/objects.dart';
import './src/phraseScrape.dart';
import './src/phraseSearch.dart';
export './src/objects.dart';
/// Query the official Jisho API for a word or phrase
///
/// See https://jisho.org/forum/54fefc1f6e73340b1f160000-is-there-any-kind-of-search-api

View File

@ -8,5 +8,6 @@ library unofficial_jisho_parser;
export './src/exampleSearch.dart'
show uriForExampleSearch, parseExamplePageData;
export './src/kanjiSearch.dart' show uriForKanjiSearch, parseKanjiPageData;
export './src/objects.dart';
export './src/phraseScrape.dart' show uriForPhraseScrape, parsePhrasePageData;
export './src/phraseSearch.dart';

View File

@ -1,5 +1,5 @@
name: unofficial_jisho_api
version: 1.0.2
version: 1.1.0
description: An unofficial api for searching and scraping the japanese dictionary Jisho.org
homepage: https://github.com/h7x4ABk3g/unofficial_jisho_api_dart/