Skip to content
Snippets Groups Projects
Commit 43aaa63f authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

format, update imports

parent 41cec7fb
No related branches found
No related tags found
1 merge request!18Resolves - Provisional Release Setup
import { AppPage } from './app.po';
import { browser, logging } from 'protractor';
import { AppPage } from './app.po';
describe('workspace-project App', () => {
let page: AppPage;
......
import { TestBed, waitForAsync } from '@angular/core/testing';
import { AppComponent } from './app.component';
describe('AppComponent', () => {
......@@ -16,7 +17,7 @@ describe('AppComponent', () => {
expect(app).toBeTruthy();
});
it(`should have as title 'example'`, () => {
it("should have as title 'example'", () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('example');
......
import { Component, ViewChild, ElementRef, OnInit, AfterViewInit } from '@angular/core';
import { DisaggResponse, Disaggregation, DisaggGraphView } from '@nshmp/disagg-d3/src/disagg';
import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core';
import { nshmpHaz } from '@ghsc/nshmp-web-utils';
import { DisaggGraphView, Disaggregation, DisaggResponse } from '@nshmp/disagg-d3/src/disagg';
import { Collection } from '@nshmp/disagg-d3/src/mvc';
import { nshmpHaz } from '@ghsc/nshmp-utils';
import deagg from '../assets/deagg.json';
......
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
......
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { nshmpHaz } from '@ghsc/nshmp-web-utils';
import { Observable, throwError } from 'rxjs';
import { map } from 'rxjs/operators';
import { nshmpHaz } from '@ghsc/nshmp-utils';
import { throwError, Observable } from 'rxjs';
@Injectable({
providedIn: 'root',
......
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
import 'zone.js/testing';
import { getTestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
......
......@@ -4,14 +4,12 @@ export * from './3d/D33dGroup';
export * from './3d/D33dOptions';
export * from './3d/D33dPath';
export * from './3d/D33dText';
export * from './util/ClassList';
export * from './util/D3Util';
export * from './view/D33dSubView';
export * from './view/D33dView';
export * from './view/D3BaseView';
export * from './view/D3Options';
export * from './view/D3SubView';
export * from './view/D3View';
export * from './view/D33dSubView';
export * from './view/D33dView';
export * from './view/Info';
import * as d3 from 'd3';
import { D33dView } from './D33dView';
import { D3BaseView } from './D3BaseView';
import { D3View } from './D3View';
import { D33dView } from './D33dView';
export interface D3Options {
el?: SVGElement | HTMLElement;
......
import { nshmpHaz } from '@ghsc/nshmp-utils';
import { nshmpHaz } from '@ghsc/nshmp-web-utils';
import { Model } from '../mvc/Model';
/**
......
import { nshmpHaz } from '@ghsc/nshmp-utils';
import { nshmpHaz } from '@ghsc/nshmp-web-utils';
import { Model } from '../mvc/Model';
import { DisaggParameters } from './DisaggParameters';
......
......@@ -3,5 +3,5 @@ export * from './DisaggBinOptions';
export * from './DisaggGraphView';
export * from './DisaggGraphViewOptions';
export * from './DisaggParameters';
export * from './DisaggResponse';
export * from './Disaggregation';
export * from './DisaggResponse';
export * from './Collection';
export * from './Column';
export * from './Model';
export * from './MvcOptions';
export * from './SelectedCollectionView';
export * from './View';
export * from './MvcOptions';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment