Skip to content
Snippets Groups Projects
Commit e554a969 authored by Glenn Vorhes's avatar Glenn Vorhes
Browse files

add scratch

parent 809deeee
No related branches found
No related tags found
No related merge requests found
/// <reference types="react" />
/**
* Created by gavorhes on 9/22/2016.
*/
import * as React from "react";
export interface HelloProps {
compiler: string;
framework: string;
}
export declare class Hello extends React.Component<HelloProps, {}> {
render(): JSX.Element;
}
/**
* Created by gavorhes on 9/22/2016.
*/
// import * as React from "react";
//
// export interface HelloProps { compiler: string; framework: string; }
//
// export class Hello extends React.Component<HelloProps, {}> {
// render() {
// return <h1>Hello from {this.props.compiler} and {this.props.framework}!</h1>;
// }
// }
//# sourceMappingURL=Hello.js.map
\ No newline at end of file
{"version":3,"file":"Hello.js","sourceRoot":"","sources":["../../src/_scratch/Hello.tsx"],"names":[],"mappings":"AAAA;;GAEG;AACH,kCAAkC;AAClC,EAAE;AACF,uEAAuE;AACvE,EAAE;AACF,+DAA+D;AAC/D,iBAAiB;AACjB,wFAAwF;AACxF,QAAQ;AACR,IAAI","sourcesContent":["/**\r\n * Created by gavorhes on 9/22/2016.\r\n */\r\n// import * as React from \"react\";\r\n//\r\n// export interface HelloProps { compiler: string; framework: string; }\r\n//\r\n// export class Hello extends React.Component<HelloProps, {}> {\r\n// render() {\r\n// return <h1>Hello from {this.props.compiler} and {this.props.framework}!</h1>;\r\n// }\r\n// }"]}
\ No newline at end of file
"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Created by gavorhes on 9/22/2016.
*/
var React = require("react");
var Hello = (function (_super) {
__extends(Hello, _super);
function Hello() {
return _super !== null && _super.apply(this, arguments) || this;
}
Hello.prototype.render = function () {
return <h1>Hello from {this.props.compiler} and {this.props.framework}!</h1>;
};
return Hello;
}(React.Component));
exports.Hello = Hello;
//# sourceMappingURL=Hello.jsx.map
\ No newline at end of file
{"version":3,"file":"Hello.jsx","sourceRoot":"","sources":["../../src/_scratch/Hello.tsx"],"names":[],"mappings":";;;;;;;;;;;;AAAA;;GAEG;AACH,6BAA+B;AAI/B;IAA2B,yBAA+B;IAA1D;;IAIA,CAAC;IAHG,sBAAM,GAAN;QACI,MAAM,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAE,KAAI,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;IACjF,CAAC;IACL,YAAC;AAAD,CAAC,AAJD,CAA2B,KAAK,CAAC,SAAS,GAIzC;AAJY,sBAAK","sourcesContent":["/**\r\n * Created by gavorhes on 9/22/2016.\r\n */\r\nimport * as React from \"react\";\r\n\r\nexport interface HelloProps { compiler: string; framework: string; }\r\n\r\nexport class Hello extends React.Component<HelloProps, {}> {\r\n render() {\r\n return <h1>Hello from {this.props.compiler} and {this.props.framework}!</h1>;\r\n }\r\n}"]}
\ No newline at end of file
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ol = require("custom-ol");
console.log(ol.animation.bounce({ duration: 10, resolution: 30, start: 4, easing: function (t) { return 5; } }));
// console.log(ol.animation.bounce({duration: 10, resolution: 30, start: 4, easing: (t) => {return 5}}));
//# sourceMappingURL=_testimport.js.map
\ No newline at end of file
{"version":3,"file":"_testimport.js","sourceRoot":"","sources":["../../src/_scratch/_testimport.ts"],"names":[],"mappings":";;AACA,8BAAiC;AACjC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,CAAC,MAAM,CAAC,EAAC,QAAQ,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,UAAC,CAAC,IAAM,MAAM,CAAC,CAAC,CAAA,CAAA,CAAC,EAAC,CAAC,CAAC,CAAC","sourcesContent":["\r\nimport ol = require('custom-ol');\r\nconsole.log(ol.animation.bounce({duration: 10, resolution: 30, start: 4, easing: (t) => {return 5}}));"]}
\ No newline at end of file
{"version":3,"file":"_testimport.js","sourceRoot":"","sources":["../../src/_scratch/_testimport.ts"],"names":[],"mappings":";;AAGA,yGAAyG","sourcesContent":["\r\nimport ol = require('custom-ol');\r\n\r\n// console.log(ol.animation.bounce({duration: 10, resolution: 30, start: 4, easing: (t) => {return 5}}));"]}
\ No newline at end of file
/**
* Created by gavorhes on 9/22/2016.
*/
// import * as React from "react";
//
// export interface HelloProps { compiler: string; framework: string; }
//
// export class Hello extends React.Component<HelloProps, {}> {
// render() {
// return <h1>Hello from {this.props.compiler} and {this.props.framework}!</h1>;
// }
// }
\ No newline at end of file
import * as React from "react";
export interface HelloProps { compiler: string; framework: string; }
export class Hello extends React.Component<HelloProps, {}> {
render() {
return <h1>Hello from {this.props.compiler} and {this.props.framework}!</h1>;
}
}
\ No newline at end of file
import ol = require('custom-ol');
console.log(ol.animation.bounce({duration: 10, resolution: 30, start: 4, easing: (t) => {return 5}}));
\ No newline at end of file
// console.log(ol.animation.bounce({duration: 10, resolution: 30, start: 4, easing: (t) => {return 5}}));
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment