Merge pull request #16984 from austincummings/master

[synaptic] Fix typo in Network definition
This commit is contained in:
Daniel Rosenwasser
2017-06-05 20:36:13 -07:00
committed by GitHub

View File

@@ -1,6 +1,7 @@
// Type definitions for synaptic 1.0.8
// Type definitions for synaptic 1.0.9
// Project: https://github.com/cazala/synaptic
// Definitions by: Markus Peloso <https://github.com/ToastHawaii/>
// Austin Cummings <https://github.com/austincummings>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import * as Synaptic from "synaptic"; // Need this to refer to Synaptic from within the `declare global`
@@ -291,7 +292,7 @@ export namespace Network {
* Networks are basically an array of layers. They have an input layer, a number of hidden layers, and an output layer.
*/
export class Network {
layer: Network.Options;
layers: Network.Options;
optimized: Network.Optimized;