@balkangraph/orgchart.js 8.0.18 → 8.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/orgchart.d.ts +2 -2
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ declare namespace OrgChart {
|
|
|
2
2
|
|
|
3
3
|
function isTrial(): boolean;
|
|
4
4
|
|
|
5
|
+
function t(templateName: string, minimized?: boolean, scale?: number ) : Object;
|
|
6
|
+
|
|
5
7
|
enum orientation {
|
|
6
8
|
top,
|
|
7
9
|
left,
|
|
@@ -1991,6 +1993,4 @@ Code example:
|
|
|
1991
1993
|
*/
|
|
1992
1994
|
exportPNGProfile(options: Object, callback?: Function) : void;
|
|
1993
1995
|
|
|
1994
|
-
t(templateName: string) : any;
|
|
1995
|
-
|
|
1996
1996
|
}export default OrgChart
|