changeset 77:0ffe5591b048

sort imports
author drewp@bigasterisk.com
date Tue, 11 Feb 2020 22:54:47 -0800
parents 58676ebdce0f
children ea9c9db282d6
files src/index.ts
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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";