# HG changeset patch # User drewp@bigasterisk.com # Date 1581490487 28800 # Node ID 0ffe5591b0484b8bc4584a71e9fe03dd46ece827 # Parent 58676ebdce0f057b97fc3bc1fe3d9b6aca11c800 sort imports diff -r 58676ebdce0f -r 0ffe5591b048 src/index.ts --- a/src/index.ts Tue Feb 11 21:55:35 2020 -0800 +++ b/src/index.ts Tue Feb 11 22:54:47 2020 -0800 @@ -1,12 +1,12 @@ -import { PolymerElement, html } from "@polymer/polymer"; -import { customElement, property, computed } from "@polymer/decorators"; -import { render } from "lit-html"; +import { render } from 'lit-html'; +import { N3Store, Store } from 'n3'; -import { N3Store, Store } from "n3"; +import { computed, customElement, property } from '@polymer/decorators'; +import { html, PolymerElement } from '@polymer/polymer'; -import { GraphView } from "./graph_view"; -import { StreamedGraphClient } from "./streamed_graph_client"; -import style from "./style.styl"; +import { GraphView } from './graph_view'; +import { StreamedGraphClient } from './streamed_graph_client'; +import style from './style.styl'; export * from "./graph_queries";