This is an automated email from the ASF dual-hosted git repository. randall pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git
commit bca65b945b747d190c173b26e1de1efa81e831a9 Author: Randall Leeds <[email protected]> AuthorDate: Tue Aug 4 22:12:09 2020 -0700 Export all types from @annotator/selector --- packages/selector/src/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/selector/src/index.ts b/packages/selector/src/index.ts index 35d004e..c66bd94 100644 --- a/packages/selector/src/index.ts +++ b/packages/selector/src/index.ts @@ -18,9 +18,10 @@ * under the License. */ -import type { Selector, Matcher } from './types'; +import type { Matcher, Selector } from './types'; -export type { Selector, Matcher }; +export type { Matcher, Selector } from './types'; +export type { CssSelector, RangeSelector, TextQuoteSelector } from './types'; export function makeRefinable< // Any subtype of Selector can be made refinable; but note we limit the value
