mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
// Type definitions for d3JS cloud layout plugin by Jason Davies
|
|
// Project: https://github.com/jasondavies/d3-cloud
|
|
// Definitions by: hans windhoff <https://github.com/hansrwindhoff>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../d3/d3.d.ts" />
|
|
|
|
declare module D3 {
|
|
export module Layout {
|
|
export interface IRotate {
|
|
(number:number) : CloudLayout;
|
|
(number:()=>number) : CloudLayout;
|
|
}
|
|
|
|
|
|
|
|
export interface CloudLayout {
|
|
(layers: any[], index?: number): any[];
|
|
values(accessor?: (d: any) => any): CloudLayout;
|
|
offset(offset: string): CloudLayout;
|
|
size: {
|
|
/**
|
|
* Gets the available layout size
|
|
*/
|
|
(): Array<number>;
|
|
/**
|
|
* Sets the available layout size
|
|
*/
|
|
(size: Array<number>): CloudLayout;
|
|
};
|
|
words: (inputArray: Array<any>) => CloudLayout;
|
|
rotate:IRotate;
|
|
padding: (number:number) => CloudLayout;
|
|
font: (string:string) => CloudLayout;
|
|
fontSize(fctn: (d: any) => number): CloudLayout;
|
|
on: (eventname: string, callee: (words: any[]) => void) => CloudLayout;
|
|
start: () => CloudLayout;
|
|
}
|
|
|
|
|
|
export interface Layout {
|
|
cloud(): CloudLayout;
|
|
}
|
|
}
|
|
} |