@prefecthq/graphs 0.1.6 → 0.1.7

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.
@@ -1,3 +1,3 @@
1
- import { Viewport } from 'pixi-viewport';
1
+ import type { Viewport as ViewportType } from 'pixi-viewport';
2
2
  import { Application } from 'pixi.js';
3
- export declare function initViewport(stage: HTMLElement, app: Application): Viewport;
3
+ export declare function initViewport(stage: HTMLElement, app: Application): Promise<ViewportType>;
@@ -1,4 +1,4 @@
1
- import { Viewport } from 'pixi-viewport';
1
+ import type { Viewport } from 'pixi-viewport';
2
2
  import { Application, Container } from 'pixi.js';
3
3
  import { TextStyles } from '../models';
4
4
  type TimelineGuidesProps = {
@@ -0,0 +1 @@
1
+ export declare function getPixiViewport(): Promise<typeof import("pixi-viewport").Viewport>;