Mercurial > code > home > repos > streamed-graph
comparison src/index.ts @ 77:0ffe5591b048
sort imports
author | drewp@bigasterisk.com |
---|---|
date | Tue, 11 Feb 2020 22:54:47 -0800 |
parents | 1bb65cb4c685 |
children | 0c188ed3bcd8 |
comparison
equal
deleted
inserted
replaced
76:58676ebdce0f | 77:0ffe5591b048 |
---|---|
1 import { PolymerElement, html } from "@polymer/polymer"; | 1 import { render } from 'lit-html'; |
2 import { customElement, property, computed } from "@polymer/decorators"; | 2 import { N3Store, Store } from 'n3'; |
3 import { render } from "lit-html"; | |
4 | 3 |
5 import { N3Store, Store } from "n3"; | 4 import { computed, customElement, property } from '@polymer/decorators'; |
5 import { html, PolymerElement } from '@polymer/polymer'; | |
6 | 6 |
7 import { GraphView } from "./graph_view"; | 7 import { GraphView } from './graph_view'; |
8 import { StreamedGraphClient } from "./streamed_graph_client"; | 8 import { StreamedGraphClient } from './streamed_graph_client'; |
9 import style from "./style.styl"; | 9 import style from './style.styl'; |
10 | 10 |
11 export * from "./graph_queries"; | 11 export * from "./graph_queries"; |
12 | 12 |
13 export interface VersionedGraph { | 13 export interface VersionedGraph { |
14 version: number; | 14 version: number; |