mirror of
https://github.com/markmanx/isoflow.git
synced 2025-02-08 12:27:53 +00:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import { Size, Coords, SceneInput } from 'src/types';
|
|
|
|
declare global {
|
|
let PACKAGE_VERSION: string;
|
|
let REPOSITORY_URL: string;
|
|
|
|
interface Window {
|
|
Isoflow: {
|
|
getUnprojectedBounds: () => Size & Coords;
|
|
fitProjectToScreen: () => void;
|
|
setScene: (scene: SceneInput) => void;
|
|
};
|
|
}
|
|
}
|