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
/// <reference path="angular.d.ts" /> | |
/// <reference path="angular-resource.d.ts" /> | |
interface IEmployee extends ng.resource.IResource<IEmployee> | |
{ | |
id: number; | |
firstName : string; | |
lastName : string; | |
} | |
interface IEmployeeResource extends ng.resource.IResourceClass<IEmployee> |
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 * as angular from 'angular'; | |
declare module 'angular' { | |
export interface IModule { | |
/** | |
* Use this method to register components. | |
* | |
* @param components An Object of component type. | |
* |
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
@echo off | |
REM Script to play a song | |
REM Example: | |
REM to-play.cmd url_to_file|path_to_file | |
REM Set file name | |
set file=%1 | |
REM Create temp file | |
( |
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
' Create shortcut for GENERALI | |
Set WshShell = WScript.CreateObject("WScript.Shell") | |
ProgramFiles = WshShell.ExpandEnvironmentStrings("%ProgramFiles(x86)%") | |
' Function create shortcut | |
' | |
' @param string name | |
' @param string urlLink | |
' @param string browser |
NewerOlder