babylon.playground.module.d.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /// <reference types="react" />
  2. declare module "babylonjs-playground/globalState" {
  3. export class GlobalState {
  4. }
  5. }
  6. declare module "babylonjs-playground/playground" {
  7. import * as React from "react";
  8. interface IPlaygroundProps {
  9. }
  10. export class Playground extends React.Component<IPlaygroundProps, {
  11. isFooterVisible: boolean;
  12. errorMessage: string;
  13. }> {
  14. constructor(props: IPlaygroundProps);
  15. render(): JSX.Element;
  16. static Show(hostElement: HTMLElement): void;
  17. }
  18. }
  19. declare module "babylonjs-playground/index" {
  20. export * from "babylonjs-playground/playground";
  21. }
  22. declare module "babylonjs-playground/legacy/legacy" {
  23. export * from "babylonjs-playground/index";
  24. }
  25. declare module "babylonjs-playground" {
  26. export * from "babylonjs-playground/legacy/legacy";
  27. }
  28. /// <reference types="react" />
  29. declare module PLAYGROUND {
  30. export class GlobalState {
  31. }
  32. }
  33. declare module PLAYGROUND {
  34. interface IPlaygroundProps {
  35. }
  36. export class Playground extends React.Component<IPlaygroundProps, {
  37. isFooterVisible: boolean;
  38. errorMessage: string;
  39. }> {
  40. constructor(props: IPlaygroundProps);
  41. render(): JSX.Element;
  42. static Show(hostElement: HTMLElement): void;
  43. }
  44. }