mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
311 B
TypeScript
10 lines
311 B
TypeScript
class ExampleCtrl {
|
|
constructor(FileSaver: angular.FileSaver) {
|
|
var data = new Blob(["Hey ho lets go!"], { type: "text/plain;charset=utf-8" });
|
|
FileSaver.saveAs(data, "text.txt");
|
|
}
|
|
}
|
|
|
|
angular
|
|
.module("fileSaverExample", ["ngFileSaver"])
|
|
.controller("ExampleCtrl", ExampleCtrl); |