Skip to content

Commit

Permalink
d.ts files generated
Browse files Browse the repository at this point in the history
  • Loading branch information
dpeachpeach committed Sep 1, 2023
1 parent 09f1c8e commit fd5fc6a
Show file tree
Hide file tree
Showing 4 changed files with 955 additions and 0 deletions.
47 changes: 47 additions & 0 deletions types/geoda-lisa.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/**
* @class
* @classdesc GeoDaLisa is a class that wraps the LISAResult
*/
export default class GeoDaLisa {
/**
* Constructor
* @param {Object} lisaResult
*/
constructor(lisa: any, proxy: any);
pvalues: any;
clusters: any;
lisaValues: any;
neighbors: any;
labels: any;
colors: any;
/**
* psudo-p values
* @returns {Array}
*/
getPValues(): any[];
/**
* cluster indicators
* @returns {Array}
*/
getClusters(): any[];
/**
* lisa values
* @returns {Array}
*/
getLisaValues(): any[];
/**
* nearest neighbors
* @returns {Array}
*/
getNeighbors(): any[];
/**
* Get labels
* @returns {Array}
*/
getLabels(): any[];
/**
* Get colors
* @returns {Array}
*/
getColors(): any[];
}
Loading

0 comments on commit fd5fc6a

Please sign in to comment.