|
| 1 | +import { |
| 2 | + Component |
| 3 | +} from '@angular2/core'; |
| 4 | +import defaultMember from "module-name"; |
| 5 | +import * as name from "module-name "; |
| 6 | +import { member } from " module-name"; |
| 7 | +import { member as alias } from "module-name"; |
| 8 | +import { member1 , member2 } from "module-name"; |
| 9 | +import { member1 , member2 as alias2 , member3 as alias3 } from "module-name"; |
| 10 | +import { |
| 11 | + Component |
| 12 | +} from '@angular2/core'; |
| 13 | +import defaultMember from "$module-name"; |
| 14 | +import defaultMember, { member, member } from "module-name"; |
| 15 | +import defaultMember, * as name from "module-name"; |
| 16 | + |
| 17 | +import * as name from "module-name " |
| 18 | +import { member } from " module-name" |
| 19 | +import { member as alias } from "module-name" |
| 20 | +import { member1 , member2 } from "module-name" |
| 21 | +import { member1 , member2 as alias2 , member3 as alias3 } from "module-name" |
| 22 | +import { |
| 23 | + Component |
| 24 | +} from '@angular2/core' |
| 25 | +import defaultMember from "$module-name" |
| 26 | +import defaultMember, { member, member } from "module-name" |
| 27 | +import defaultMember, * as name from "module-name" |
| 28 | + |
| 29 | +import "module-name"; |
| 30 | +import React from "react" |
| 31 | +import { Field } from "redux-form" |
| 32 | +import "module-name"; |
| 33 | + |
| 34 | +import { |
| 35 | + PlaneBufferGeometry, |
| 36 | + OctahedronGeometry, |
| 37 | + TorusBufferGeometry |
| 38 | +} from '../geometries/Geometries.js'; |
| 39 | + |
| 40 | +import { |
| 41 | + PlaneBufferGeometry, |
| 42 | + OctahedronGeometry, |
| 43 | + TorusBufferGeometry |
| 44 | +} from '../geometries/Geometries.js' |
| 45 | + |
| 46 | +import("module-name/whatever.ts"); |
| 47 | +import("module-name/whatever.ts") |
| 48 | + |
| 49 | +import { Field } from "redux-form"; |
| 50 | +import MultiContentListView from "./views/ListView"; |
| 51 | +import MultiContentAddView from "./views/AddView"; |
| 52 | +import MultiContentEditView from "./views/EditView"; |
| 53 | + |
| 54 | +import { Field } from "redux-form" |
| 55 | +import MultiContentListView from "./views/ListView" |
| 56 | +import MultiContentAddView from "./views/AddView" |
| 57 | +import MultiContentEditView from "./views/EditView" |
| 58 | + |
| 59 | + |
| 60 | +<MenuItem value="^$" primaryText="Não exibir importados" /> |
| 61 | +<MenuItem value="\\w+" primaryText="Exibir importados" /> |
| 62 | + |
| 63 | +// *Add all needed dependency to this module |
| 64 | +// *app requires those import modules to function |
| 65 | + |
| 66 | + |
| 67 | +/** |
| 68 | +* |
| 69 | + *Add all needed dependency to this module |
| 70 | + *app requires those import modules to function |
| 71 | + * |
| 72 | +**/ |
| 73 | + |
| 74 | +let modules = []; |
| 75 | + |
| 76 | + |
| 77 | +import defaultExport from "module-name"; |
| 78 | +import * as name from "module-name"; |
| 79 | +import { export1 } from "module-name"; |
| 80 | +import { export1 as alias1 } from "module-name"; |
| 81 | +import { default as alias } from "module-name"; |
| 82 | +import { export1, export2 } from "module-name"; |
| 83 | +import { export1, export2 as alias2, /* … */ } from "module-name"; |
| 84 | +import { "string name" as alias } from "module-name"; |
| 85 | +import defaultExport, { export1, /* … */ } from "module-name"; |
| 86 | +import defaultExport, * as name from "module-name"; |
| 87 | +import "module-name"; |
| 88 | +import { "a-b" as a } from "/modules/my-module.ts"; |
| 89 | +import myDefault from "/modules/my-module.ts"; |
| 90 | +import myDefault, * as myModule from "/modules/my-module.ts"; |
0 commit comments