Skip to content

Commit

Permalink
chore: post rebase api gen
Browse files Browse the repository at this point in the history
  • Loading branch information
monfera committed Mar 23, 2021
1 parent 883b840 commit 30e3241
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions api/charts.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,7 @@ export const ChartTypes: Readonly<{
Partition: "partition";
XYAxis: "xy_axis";
Heatmap: "heatmap";
Wordcloud: "wordcloud";
}>;

// @public (undocumented)
Expand Down Expand Up @@ -2370,6 +2371,56 @@ export interface Visible {
visible: boolean;
}

// Warning: (ae-forgotten-export) The symbol "SpecRequiredProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-forgotten-export) The symbol "SpecOptionalProps" needs to be exported by the entry point index.d.ts
//
// @alpha (undocumented)
export const Wordcloud: React_2.FunctionComponent<SpecRequiredProps_9 & SpecOptionalProps_9>;

// @alpha (undocumented)
export interface WordcloudSpec extends Spec {
// (undocumented)
angleCount: number;
// (undocumented)
chartType: typeof ChartTypes.Wordcloud;
// (undocumented)
config: RecursivePartial<PartitionConfig>;
// Warning: (ae-forgotten-export) The symbol "WordModel" needs to be exported by the entry point index.d.ts
//
// (undocumented)
data: WordModel[];
// (undocumented)
endAngle: number;
// (undocumented)
exponent: number;
// (undocumented)
fontFamily: string;
// (undocumented)
fontStyle: string;
// (undocumented)
fontWeight: number;
// (undocumented)
maxFontSize: number;
// (undocumented)
minFontSize: number;
// Warning: (ae-forgotten-export) The symbol "OutOfRoomCallback" needs to be exported by the entry point index.d.ts
//
// (undocumented)
outOfRoomCallback: OutOfRoomCallback;
// (undocumented)
padding: number;
// (undocumented)
specType: typeof SpecTypes.Series;
// (undocumented)
spiral: string;
// (undocumented)
startAngle: number;
// Warning: (ae-forgotten-export) The symbol "WeightFun" needs to be exported by the entry point index.d.ts
//
// (undocumented)
weightFun: WeightFun;
}

// Warning: (ae-missing-release-tag) "XScaleType" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
Expand Down

0 comments on commit 30e3241

Please sign in to comment.