Skip to content

Commit 9bfc978

Browse files
initial commit
0 parents  commit 9bfc978

27 files changed

+3154
-0
lines changed

.gitignore

+192
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
## jspm ignores
2+
node_modules
3+
jspm_packages
4+
bower_components
5+
.DS_STORE
6+
7+
8+
9+
## Ignore Visual Studio temporary files, build results, and
10+
## files generated by popular Visual Studio add-ons.
11+
12+
# User-specific files
13+
*.suo
14+
*.vs12.suo
15+
*.user
16+
*.sln.docstates
17+
18+
# Build results
19+
[Dd]ebug/
20+
[Dd]ebugPublic/
21+
[Rr]elease/
22+
[Rr]eleases/
23+
x64/
24+
x86/
25+
build/
26+
bld/
27+
[Bb]in/
28+
[Oo]bj/
29+
30+
# Roslyn cache directories
31+
*.ide/
32+
33+
# MSTest test Results
34+
[Tt]est[Rr]esult*/
35+
[Bb]uild[Ll]og.*
36+
37+
#NUNIT
38+
*.VisualState.xml
39+
TestResult.xml
40+
41+
# Build Results of an ATL Project
42+
[Dd]ebugPS/
43+
[Rr]eleasePS/
44+
dlldata.c
45+
46+
*_i.c
47+
*_p.c
48+
*_i.h
49+
*.ilk
50+
*.meta
51+
*.obj
52+
*.pch
53+
*.pdb
54+
*.pgc
55+
*.pgd
56+
*.rsp
57+
*.sbr
58+
*.tlb
59+
*.tli
60+
*.tlh
61+
*.tmp
62+
*.tmp_proj
63+
*.log
64+
*.vspscc
65+
*.vssscc
66+
.builds
67+
*.pidb
68+
*.svclog
69+
*.scc
70+
71+
# Chutzpah Test files
72+
_Chutzpah*
73+
74+
# Visual C++ cache files
75+
ipch/
76+
*.aps
77+
*.ncb
78+
*.opensdf
79+
*.sdf
80+
*.cachefile
81+
82+
# Visual Studio profiler
83+
*.psess
84+
*.vsp
85+
*.vspx
86+
87+
# TFS 2012 Local Workspace
88+
$tf/
89+
90+
# Guidance Automation Toolkit
91+
*.gpState
92+
93+
# ReSharper is a .NET coding add-in
94+
_ReSharper*/
95+
*.[Rr]e[Ss]harper
96+
*.DotSettings.user
97+
98+
# JustCode is a .NET coding addin-in
99+
.JustCode
100+
101+
# TeamCity is a build add-in
102+
_TeamCity*
103+
104+
# DotCover is a Code Coverage Tool
105+
*.dotCover
106+
107+
# NCrunch
108+
_NCrunch_*
109+
.*crunch*.local.xml
110+
111+
# MightyMoose
112+
*.mm.*
113+
AutoTest.Net/
114+
115+
# Web workbench (sass)
116+
.sass-cache/
117+
118+
# Installshield output folder
119+
[Ee]xpress/
120+
121+
# DocProject is a documentation generator add-in
122+
DocProject/buildhelp/
123+
DocProject/Help/*.HxT
124+
DocProject/Help/*.HxC
125+
DocProject/Help/*.hhc
126+
DocProject/Help/*.hhk
127+
DocProject/Help/*.hhp
128+
DocProject/Help/Html2
129+
DocProject/Help/html
130+
131+
# Click-Once directory
132+
publish/
133+
134+
# Publish Web Output
135+
*.[Pp]ublish.xml
136+
*.azurePubxml
137+
# TODO: Comment the next line if you want to checkin your web deploy settings
138+
# but database connection strings (with potential passwords) will be unencrypted
139+
*.pubxml
140+
*.publishproj
141+
142+
# NuGet Packages
143+
*.nupkg
144+
# The packages folder can be ignored because of Package Restore
145+
**/packages/*
146+
# except build/, which is used as an MSBuild target.
147+
!**/packages/build/
148+
# If using the old MSBuild-Integrated Package Restore, uncomment this:
149+
#!**/packages/repositories.config
150+
151+
# Windows Azure Build Output
152+
csx/
153+
*.build.csdef
154+
155+
# Windows Store app package directory
156+
AppPackages/
157+
158+
# Others
159+
sql/
160+
*.Cache
161+
ClientBin/
162+
[Ss]tyle[Cc]op.*
163+
~$*
164+
*~
165+
*.dbmdl
166+
*.dbproj.schemaview
167+
*.pfx
168+
*.publishsettings
169+
node_modules/
170+
171+
# RIA/Silverlight projects
172+
Generated_Code/
173+
174+
# Backup & report files from converting an old project file
175+
# to a newer Visual Studio version. Backup files are not needed,
176+
# because we have git ;-)
177+
_UpgradeReport_Files/
178+
Backup*/
179+
UpgradeLog*.XML
180+
UpgradeLog*.htm
181+
182+
# SQL Server files
183+
*.mdf
184+
*.ldf
185+
186+
# Business Intelligence projects
187+
*.rdl.data
188+
*.bim.layout
189+
*.bim_*.settings
190+
191+
# Microsoft Fakes
192+
FakesAssemblies/

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# aurelia-typescript-atom
2+
An starter kit for working with the Aurelia TypeScript using the Atom IDE
3+
4+
This library works with the [Aurelia](http://www.aurelia.io/) platform.
5+
6+
It contains a [folder](https://github.com/cmichaelgraham/aurelia-typescript-atom/blob/master/aurelia-dts) of Aurelia type definitions in each sample
7+
8+
## Contributing
9+
10+
We'd love for you to contribute to our source code and to make this project even better than it is today! If this interests you, please begin by reading [our contributing guidelines](https://github.com/DurandalProject/about/blob/master/CONTRIBUTING.md). The contributing document will provide you with all the information you need to get started. Once you have read that, you will need to also [sign our CLA](http://goo.gl/forms/dI8QDDSyKR) before we can accepts a Pull Request from you. More information on the process is including in the [contributor's guide](https://github.com/DurandalProject/about/blob/master/CONTRIBUTING.md).

aurelia-dts/aurelia-animator-css.d.ts

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
declare module 'aurelia-animator-css/animator' {
2+
export class CssAnimator {
3+
animationStack: any;
4+
constructor();
5+
addMultipleEventListener(el: any, s: any, fn: any, b: any): void;
6+
addAnimationToStack(animId: any): void;
7+
removeAnimationFromStack(animId: any): void;
8+
move(): Promise<boolean>;
9+
enter(element: any): Promise<{}>;
10+
leave(element: any): Promise<{}>;
11+
removeClass(element: any, className: any): Promise<{}>;
12+
addClass(element: any, className: any): Promise<{}>;
13+
}
14+
15+
}
16+
declare module 'aurelia-animator-css/index' {
17+
export { CssAnimator } from 'aurelia-animator-css\animator';
18+
export function install(aurelia: any): void;
19+
20+
}
21+
declare module 'aurelia-animator-css' {
22+
export * from 'aurelia-animator-css/index';
23+
}

aurelia-dts/aurelia-app-contacts.d.ts

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
declare module 'aurelia-app-contacts/web-api' {
2+
export class WebAPI {
3+
isRequesting: any;
4+
getContactList(): Promise<{}>;
5+
getContactDetails(id: any): Promise<{}>;
6+
saveContact(contact: any): Promise<{}>;
7+
}
8+
9+
}
10+
declare module 'aurelia-app-contacts/app' {
11+
export class App {
12+
router: any;
13+
api: any;
14+
constructor(router: any, api: any);
15+
}
16+
17+
}
18+
declare module 'aurelia-app-contacts/messages' {
19+
export class ContactUpdated {
20+
contact: any;
21+
constructor(contact: any);
22+
}
23+
export class ContactViewed {
24+
contact: any;
25+
constructor(contact: any);
26+
}
27+
28+
}
29+
declare module 'aurelia-app-contacts/utility' {
30+
export function areEqual(obj1: any, obj2: any): boolean;
31+
32+
}
33+
declare module 'aurelia-app-contacts/contact-detail' {
34+
export class ContactDetail {
35+
app: any;
36+
api: any;
37+
ea: any;
38+
contact: any;
39+
originalContact: any;
40+
constructor(app: any, api: any, ea: any);
41+
activate(params: any, qs: any, config: any): any;
42+
canSave: boolean;
43+
save(): void;
44+
canDeactivate(): boolean;
45+
}
46+
47+
}
48+
declare module 'aurelia-app-contacts/contact-list' {
49+
export class ContactList {
50+
api: any;
51+
contacts: any;
52+
selectedId: any;
53+
constructor(api: any, ea: any);
54+
created(): void;
55+
select(contact: any): boolean;
56+
}
57+
58+
}
59+
declare module 'aurelia-app-contacts/loading-indicator' {
60+
export class LoadingIndicator {
61+
loadingChanged(newValue: any): void;
62+
}
63+
64+
}
65+
declare module 'aurelia-app-contacts/no-selection' {
66+
export class NoSelection {
67+
message: any;
68+
constructor();
69+
}
70+
71+
}
72+
declare module 'aurelia-app-contacts' {
73+
export * from 'aurelia-app-contacts/index';
74+
}

0 commit comments

Comments
 (0)