Skip to content

Commit

Permalink
Rebuild docs and typings
Browse files Browse the repository at this point in the history
  • Loading branch information
williamngan committed Aug 29, 2018
1 parent 8f8ef02 commit 08d21c5
Show file tree
Hide file tree
Showing 92 changed files with 2,310 additions and 2,281 deletions.
1 change: 1 addition & 0 deletions dist/files/Canvas.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { MultiTouchSpace } from './Space';
import { VisualForm, Font } from "./Form";
import { Pt, Bound } from "./Pt";
Expand Down
1 change: 1 addition & 0 deletions dist/files/Canvas.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Color.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt, Group } from "./Pt";
import { ColorType } from "./Types";
export declare class Color extends Pt {
Expand Down
1 change: 1 addition & 0 deletions dist/files/Color.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Create.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt, Group, Bound } from "./Pt";
import { PtLike, GroupLike, DelaunayMesh, DelaunayShape } from "./Types";
export declare class Create {
Expand Down
1 change: 1 addition & 0 deletions dist/files/Create.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Dom.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { MultiTouchSpace } from './Space';
import { Form, VisualForm, Font } from "./Form";
import { Pt, Bound } from './Pt';
Expand Down
1 change: 1 addition & 0 deletions dist/files/Dom.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Form.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt } from "./Pt";
import { PtLike, GroupLike } from "./Types";
export declare abstract class Form {
Expand Down
1 change: 1 addition & 0 deletions dist/files/Form.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/LinearAlgebra.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt, Group } from "./Pt";
import { PtLike, GroupLike } from "./Types";
export declare class Vec {
Expand Down
1 change: 1 addition & 0 deletions dist/files/LinearAlgebra.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Num.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt, Group } from "./Pt";
import { PtLike, GroupLike } from "./Types";
export declare class Num {
Expand Down
1 change: 1 addition & 0 deletions dist/files/Num.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Op.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt, Group } from "./Pt";
import { PtLike, GroupLike, IntersectContext } from "./Types";
export declare class Line {
Expand Down
1 change: 1 addition & 0 deletions dist/files/Op.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Physics.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt, Group, Bound } from "./Pt";
import { PtLike, GroupLike } from "./Types";
export declare class World {
Expand Down
1 change: 1 addition & 0 deletions dist/files/Physics.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/files/Pt.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { IPt, GroupLike, PtLike } from "./Types";
export declare var PtBaseArray: Float32ArrayConstructor;
export declare class Pt extends PtBaseArray implements IPt, Iterable<number> {
export declare class Pt extends Float32Array implements IPt, Iterable<number> {
protected _id: string;
constructor(...args: any[]);
static make(dimensions: number, defaultValue?: number, randomize?: boolean): Pt;
Expand Down
6 changes: 3 additions & 3 deletions dist/files/Pt.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Space.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt, Bound } from "./Pt";
import { Form } from "./Form";
import { ITimer, ISpacePlayers, IPlayer, AnimateCallbackFn, IPt, TouchPointsKey } from "./Types";
Expand Down
1 change: 1 addition & 0 deletions dist/files/Space.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Svg.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { VisualForm, Font } from "./Form";
import { Pt, Bound } from './Pt';
import { DOMSpace } from "./Dom";
Expand Down
1 change: 1 addition & 0 deletions dist/files/Svg.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Types.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Pt, Group, Bound } from "./Pt";
import { Space } from "./Space";
import { UI } from "./UI";
Expand Down
1 change: 1 addition & 0 deletions dist/files/Types.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Typography.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { GroupLike } from "./Types";
export declare class Typography {
static textWidthEstimator(fn: (string: any) => number, samples?: string[], distribution?: number[]): (string: any) => number;
Expand Down
1 change: 1 addition & 0 deletions dist/files/Typography.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/UI.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { Group } from "./Pt";
import { UIHandler, GroupLike, PtLike } from "./Types";
export declare const UIShape: {
Expand Down
1 change: 1 addition & 0 deletions dist/files/UI.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/files/Util.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! Source code licensed under Apache License 2.0. Copyright © 2017-current William Ngan and contributors. (https://github.com/williamngan/pts) */
import { WarningType } from "./Types";
export declare const Const: {
xy: string;
Expand Down
1 change: 1 addition & 0 deletions dist/files/Util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/pts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,7 @@ export class Body extends Group {
processParticle(b: Particle): void;
}

export var PtBaseArray: Float32ArrayConstructor;
export class Pt extends PtBaseArray implements IPt, Iterable<number> {
export class Pt extends Float32Array implements IPt, Iterable<number> {
protected _id: string;
constructor(...args: any[]);
static make(dimensions: number, defaultValue?: number, randomize?: boolean): Pt;
Expand Down
Loading

0 comments on commit 08d21c5

Please sign in to comment.