This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module App.Services { | |
export interface IProxyPService { | |
addTsEntryAndName(person: ProxyGeneratorDemoPage.Models.Person.Models.IPerson, name: string): ng.IPromise<ProxyGeneratorDemoPage.Models.Person.Models.IAuto>; | |
loadTsCallById(id: number): ng.IPromise<ProxyGeneratorDemoPage.Models.Person.Models.IPerson>; | |
loadTsCallByParams(name: string, vorname: string, alter: number): ng.IPromise<ProxyGeneratorDemoPage.Models.Person.Models.IPerson>; | |
voidTsReturnType(name: string): void; | |
stringTsReturnType(name: string): ng.IPromise<string>; | |
integerTsReturnType(age: number): ng.IPromise<number>; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module App.Components { | |
/* | |
* Beschreibung ... | |
* | |
* Verwendung: | |
* | |
* <edit-user-cmp name="ctrl.name" test="ctrl.blubb></edit-user-cmp> | |
*/ | |
export class EditUserCmp implements ng.IComponentOptions { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | |
<metadata> | |
<id>AngularJsResharper.Settings</id> | |
<version>1.9.9</version> | |
<authors>SquadWuschel</authors> | |
<requireLicenseAcceptance>false</requireLicenseAcceptance> | |
<description>My package description.</description> | |
<dependencies> | |
<dependency id="Wave" version="[5.0]" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module App.Directives { | |
/* | |
* Ein Ui Bootstrap Modal draggable/verschiebbar machen | |
* | |
* Verwendung: | |
* | |
* Einfach in AngularJs registrieren und dann sind alle Modals Draggable. | |
* | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* System configuration for Angular samples | |
* Adjust as necessary for your application needs. | |
*/ | |
(function (global) { | |
System.config({ | |
paths: { | |
// paths serve as alias | |
'npm:': 'node_modules/' | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>My ASP.NET Application</title> | |
@Styles.Render("~/Content/css") | |
<!-- Polyfill(s) for older browsers like IE --> | |
<script src="~/Scripts/shim.min.js"></script> | |
<!-- 1. Load libraries --> | |
<script src="~/Scripts/zone.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'my-app', | |
template: '<h1 class="well well-sm text-center">Hello World to - {{name}}</h1>' | |
}) | |
export class AppComponent { | |
public name : string = "SquadWuschel"; | |
constructor() { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | |
import { AppModule } from "./app.module"; | |
platformBrowserDynamic().bootstrapModule(AppModule); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TypeScriptTarget>ES5</TypeScriptTarget> | |
<TypeScriptJSXEmit>None</TypeScriptJSXEmit> | |
<TypeScriptCompileOnSaveEnabled>True</TypeScriptCompileOnSaveEnabled> | |
<TypeScriptNoImplicitAny>False</TypeScriptNoImplicitAny> | |
<TypeScriptModuleKind>CommonJS</TypeScriptModuleKind> | |
<TypeScriptRemoveComments>False</TypeScriptRemoveComments> | |
<TypeScriptOutFile /> | |
<TypeScriptOutDir /> | |
<TypeScriptGeneratesDeclarations>False</TypeScriptGeneratesDeclarations> | |
<TypeScriptNoEmitOnError>True</TypeScriptNoEmitOnError> |